Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
6d3f5192
Commit
6d3f5192
authored
Mar 09, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.1-new
into neptunus.(none):/home/msvensson/mysql/mysql-5.1
parents
483f53b4
0ecec577
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
52 additions
and
15 deletions
+52
-15
configure.in
configure.in
+1
-1
mysql-test/r/view.result
mysql-test/r/view.result
+14
-0
mysql-test/t/mysqltest.test
mysql-test/t/mysqltest.test
+13
-13
mysql-test/t/view.test
mysql-test/t/view.test
+14
-0
sql/item_cmpfunc.cc
sql/item_cmpfunc.cc
+2
-1
sql/sql_analyse.cc
sql/sql_analyse.cc
+2
-0
sql/sql_lex.cc
sql/sql_lex.cc
+1
-0
sql/sql_lex.h
sql/sql_lex.h
+4
-0
sql/sql_parse.cc
sql/sql_parse.cc
+1
-0
No files found.
configure.in
View file @
6d3f5192
...
...
@@ -214,7 +214,7 @@ AC_PROG_INSTALL
test
-z
"
$INSTALL_SCRIPT
"
&&
INSTALL_SCRIPT
=
'${INSTALL_PROGRAM}'
# Not critical since the generated file is distributed
AC_
PROG_YACC
AC_
CHECK_PROGS
(
YACC,
[
'bison -y -p MYSQL'
])
AC_CHECK_PROG
(
PDFMANUAL, pdftex, manual.pdf
)
AC_CHECK_PROG
(
DVIS, tex, manual.dvi
)
...
...
mysql-test/r/view.result
View file @
6d3f5192
...
...
@@ -2539,3 +2539,17 @@ drop view v1;
//
View Create View
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select sql_no_cache `test`.`t1`.`id` AS `id` from `t1`
create table t1(f1 int, f2 int);
create view v1 as select ta.f1 as a, tb.f1 as b from t1 ta, t1 tb where ta.f1=tb
.f1 and ta.f2=tb.f2;
insert into t1 values(1,1),(2,2);
create view v2 as select * from v1 where a > 1 with check option;
select * from v2;
a b
2 2
update v2 set b=3 where a=2;
select * from v2;
a b
3 3
drop view v2, v1;
drop table t1;
mysql-test/t/mysqltest.test
View file @
6d3f5192
...
...
@@ -27,7 +27,7 @@
# ----------------------------------------------------------------------------
# $mysql_errno contains the return code of the last command
# sen
d
to the server.
# sen
t
to the server.
# ----------------------------------------------------------------------------
# get $mysql_errno before the first statement
# $mysql_errno should be -1
...
...
@@ -50,7 +50,7 @@ select otto from (select 1 as otto) as t1;
# ----------------------------------------------------------------------------
# Negative case(statement):
# The der
vi
ed table t1 does not contain a column named 'friedrich' .
# The der
iv
ed table t1 does not contain a column named 'friedrich' .
# --> ERROR 42S22: Unknown column 'friedrich' in 'field list and
# --> 1054: Unknown column 'friedrich' in 'field list'
# ----------------------------------------------------------------------------
...
...
@@ -68,7 +68,7 @@ select friedrich from (select 1 as otto) as t1;
# The following unmasked unsuccessful statement must give
# 1. mysqltest gives a 'failed'
# 2. does not produce a r/<test case>.reject file !!!
# PLEASE uncomment it and check it
'
s effect
# PLEASE uncomment it and check its effect
#select friedrich from (select 1 as otto) as t1;
...
...
@@ -114,7 +114,7 @@ select friedrich from (select 1 as otto) as t1;
# test cases for $mysql_errno
#
# $mysql_errno is a builtin variable of mysqltest and contains the return code
# of the last command sen
d
to the server.
# of the last command sen
t
to the server.
#
# The following test cases often initialize $mysql_errno to 1064 by
# a command with wrong syntax.
...
...
@@ -217,7 +217,7 @@ garbage ;
execute
stmt
;
eval
select
$mysql_errno
as
"after_successful_execute"
;
# failing execute (table dropped)
# failing execute (table
has been
dropped)
drop
table
t1
;
--
error
1064
garbage
;
...
...
@@ -249,8 +249,8 @@ eval select $mysql_errno as "after_failing_deallocate" ;
# ----------------------------------------------------------------------------
# test cases for "--disable_abort_on_error"
#
# "--disable_abort_on_error" switches the abort of mysqltest
# after "unmasked" failing statements
off
.
# "--disable_abort_on_error" switches
off
the abort of mysqltest
# after "unmasked" failing statements.
#
# The default is "--enable_abort_on_error".
#
...
...
@@ -258,13 +258,13 @@ eval select $mysql_errno as "after_failing_deallocate" ;
# --error <error number> and --error <error number>
# in the line before the failing statement.
#
# There are some additional test case for $mysql_errno
# There are some additional test case
s
for $mysql_errno
# because "--disable_abort_on_error" enables a new situation.
# Example: "unmasked" statement fails + analysis of $mysql_errno
# ----------------------------------------------------------------------------
# ----------------------------------------------------------------------------
# Switch
the abort on error off
and check the effect on $mysql_errno
# Switch
off the abort on error
and check the effect on $mysql_errno
# ----------------------------------------------------------------------------
--
error
1064
garbage
;
...
...
@@ -345,7 +345,7 @@ select 3 from t1 ;
# ----------------------------------------------------------------------------
# Test detect end of line "junk"
# Most likely cause
s
by a missing delimiter
# Most likely cause
d
by a missing delimiter
# ----------------------------------------------------------------------------
# Too many parameters to function
...
...
@@ -1040,7 +1040,7 @@ let $message= . Here comes a very very long message that
--
source
include
/
show_msg80
.
inc
#
# Test --enable_pars
ning / disable_parsn
ing
# Test --enable_pars
ing / disable_pars
ing
#
--
disable_query_log
--
disable_parsing
...
...
@@ -1067,9 +1067,9 @@ select "this will be executed";
#
# Test that mysqltest fails when there are no queries executed
# but a result file exist
# but a result file exist
s
# NOTE! This will never happen as long as it's not allowed to have
# test files that
does not produce any
output
# test files that
produce no
output
#--exec echo "something" > $MYSQLTEST_VARDIR/tmp/result_file.result
#--exec echo "let \$i= 1;" > $MYSQLTEST_VARDIR/tmp/query.sql
#--error 1
...
...
mysql-test/t/view.test
View file @
6d3f5192
...
...
@@ -2390,3 +2390,17 @@ show create view v1;
drop
view
v1
;
//
delimiter
;
//
#
# Bug#17726 Not checked empty list caused endless loop
#
create
table
t1
(
f1
int
,
f2
int
);
create
view
v1
as
select
ta
.
f1
as
a
,
tb
.
f1
as
b
from
t1
ta
,
t1
tb
where
ta
.
f1
=
tb
.
f1
and
ta
.
f2
=
tb
.
f2
;
insert
into
t1
values
(
1
,
1
),(
2
,
2
);
create
view
v2
as
select
*
from
v1
where
a
>
1
with
check
option
;
select
*
from
v2
;
update
v2
set
b
=
3
where
a
=
2
;
select
*
from
v2
;
drop
view
v2
,
v1
;
drop
table
t1
;
sql/item_cmpfunc.cc
View file @
6d3f5192
...
...
@@ -2547,7 +2547,8 @@ Item_cond::fix_fields(THD *thd, Item **ref)
{
table_map
tmp_table_map
;
while
(
item
->
type
()
==
Item
::
COND_ITEM
&&
((
Item_cond
*
)
item
)
->
functype
()
==
functype
())
((
Item_cond
*
)
item
)
->
functype
()
==
functype
()
&&
!
((
Item_cond
*
)
item
)
->
list
.
is_empty
())
{
// Identical function
li
.
replace
(((
Item_cond
*
)
item
)
->
list
);
((
Item_cond
*
)
item
)
->
list
.
empty
();
...
...
sql/sql_analyse.cc
View file @
6d3f5192
...
...
@@ -27,6 +27,8 @@
#pragma implementation // gcc: Class implementation
#endif
#define MYSQL_LEX 1
#include "mysql_priv.h"
#include "procedure.h"
#include "sql_analyse.h"
...
...
sql/sql_lex.cc
View file @
6d3f5192
...
...
@@ -17,6 +17,7 @@
/* A lexical scanner on a temporary buffer with a yacc interface */
#define MYSQL_LEX 1
#include "mysql_priv.h"
#include "item_create.h"
#include <m_ctype.h>
...
...
sql/sql_lex.h
View file @
6d3f5192
...
...
@@ -41,8 +41,12 @@ class Event_timed;
#define LEX_YYSTYPE void *
#else
#include "lex_symbol.h"
#if MYSQL_LEX
#include "sql_yacc.h"
#define LEX_YYSTYPE YYSTYPE *
#else
#define LEX_YYSTYPE void *
#endif
#endif
#endif
...
...
sql/sql_parse.cc
View file @
6d3f5192
...
...
@@ -14,6 +14,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#define MYSQL_LEX 1
#include "mysql_priv.h"
#include "sql_repl.h"
#include "rpl_filter.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment