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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
417c571b
Commit
417c571b
authored
Jul 02, 2003
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some fixes for CREATE / INSERT FROM UNIO >..
parent
65d79805
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
11 deletions
+34
-11
mysql-test/r/union.result
mysql-test/r/union.result
+28
-2
mysql-test/t/grant.test
mysql-test/t/grant.test
+1
-1
mysql-test/t/union.test
mysql-test/t/union.test
+2
-2
sql/sql_yacc.yy
sql/sql_yacc.yy
+3
-6
No files found.
mysql-test/r/union.result
View file @
417c571b
...
@@ -271,9 +271,35 @@ insert into t1 values(1,'a'),(2,'b'),(3,'c'),(3,'c');
...
@@ -271,9 +271,35 @@ insert into t1 values(1,'a'),(2,'b'),(3,'c'),(3,'c');
CREATE TABLE t2 (a int not null, b char (10) not null);
CREATE TABLE t2 (a int not null, b char (10) not null);
insert into t2 values (3,'c'),(4,'d'),(5,'f'),(6,'e');
insert into t2 values (3,'c'),(4,'d'),(5,'f'),(6,'e');
create table t3 select a,b from t1 union select a,b from t2;
create table t3 select a,b from t1 union select a,b from t2;
create table t4 (select a,b from t1) union (select a,b from t2)
limit 2
;
create table t4 (select a,b from t1) union (select a,b from t2);
insert into t4 select a,b from t1 union select a,b from t2;
insert into t4 select a,b from t1 union select a,b from t2;
insert into t3 (select a,b from t1) union (select a,b from t2)
limit 2
;
insert into t3 (select a,b from t1) union (select a,b from t2);
select * from t3;
select * from t3;
a b
1 a
2 b
3 c
4 d
5 f
6 e
1 a
2 b
3 c
4 d
5 f
6 e
select * from t4;
select * from t4;
a b
1 a
2 b
3 c
4 d
5 f
6 e
1 a
2 b
3 c
4 d
5 f
6 e
drop table t1,t2,t3,t4;
drop table t1,t2,t3,t4;
mysql-test/t/grant.test
View file @
417c571b
...
@@ -72,5 +72,5 @@ delete from mysql.tables_priv where user='mysqltest_1';
...
@@ -72,5 +72,5 @@ delete from mysql.tables_priv where user='mysqltest_1';
delete
from
mysql
.
columns_priv
where
user
=
'mysqltest_1'
;
delete
from
mysql
.
columns_priv
where
user
=
'mysqltest_1'
;
flush
privileges
;
flush
privileges
;
drop
table
t1
;
drop
table
t1
;
--
error
1
054
--
error
1
221
GRANT
FILE
on
mysqltest
.*
to
mysqltest_1
@
localhost
;
GRANT
FILE
on
mysqltest
.*
to
mysqltest_1
@
localhost
;
mysql-test/t/union.test
View file @
417c571b
...
@@ -164,9 +164,9 @@ insert into t1 values(1,'a'),(2,'b'),(3,'c'),(3,'c');
...
@@ -164,9 +164,9 @@ insert into t1 values(1,'a'),(2,'b'),(3,'c'),(3,'c');
CREATE
TABLE
t2
(
a
int
not
null
,
b
char
(
10
)
not
null
);
CREATE
TABLE
t2
(
a
int
not
null
,
b
char
(
10
)
not
null
);
insert
into
t2
values
(
3
,
'c'
),(
4
,
'd'
),(
5
,
'f'
),(
6
,
'e'
);
insert
into
t2
values
(
3
,
'c'
),(
4
,
'd'
),(
5
,
'f'
),(
6
,
'e'
);
create
table
t3
select
a
,
b
from
t1
union
select
a
,
b
from
t2
;
create
table
t3
select
a
,
b
from
t1
union
select
a
,
b
from
t2
;
create
table
t4
(
select
a
,
b
from
t1
)
union
(
select
a
,
b
from
t2
)
limit
2
;
create
table
t4
(
select
a
,
b
from
t1
)
union
(
select
a
,
b
from
t2
);
insert
into
t4
select
a
,
b
from
t1
union
select
a
,
b
from
t2
;
insert
into
t4
select
a
,
b
from
t1
union
select
a
,
b
from
t2
;
insert
into
t3
(
select
a
,
b
from
t1
)
union
(
select
a
,
b
from
t2
)
limit
2
;
insert
into
t3
(
select
a
,
b
from
t1
)
union
(
select
a
,
b
from
t2
);
select
*
from
t3
;
select
*
from
t3
;
select
*
from
t4
;
select
*
from
t4
;
drop
table
t1
,
t2
,
t3
,
t4
;
drop
table
t1
,
t2
,
t3
,
t4
;
sql/sql_yacc.yy
View file @
417c571b
...
@@ -597,7 +597,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b,int *yystacksize);
...
@@ -597,7 +597,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b,int *yystacksize);
table_to_table_list table_to_table opt_table_list opt_as
table_to_table_list table_to_table opt_table_list opt_as
handler_rkey_function handler_read_or_scan
handler_rkey_function handler_read_or_scan
single_multi table_wild_list table_wild_one opt_wild opt_union union_list
single_multi table_wild_list table_wild_one opt_wild opt_union union_list
precision union_option
precision union_option
opt_and
END_OF_INPUT
END_OF_INPUT
%type <NONE>
%type <NONE>
...
@@ -2640,9 +2640,7 @@ insert_field_spec:
...
@@ -2640,9 +2640,7 @@ insert_field_spec:
lex->many_values.push_back(lex->insert_list))
lex->many_values.push_back(lex->insert_list))
YYABORT;
YYABORT;
}
}
ident_eq_list
ident_eq_list;
| select_for_insert {}
;
opt_field_spec:
opt_field_spec:
/* empty */ { }
/* empty */ { }
...
@@ -2651,8 +2649,7 @@ opt_field_spec:
...
@@ -2651,8 +2649,7 @@ opt_field_spec:
fields:
fields:
fields ',' insert_ident { Lex->field_list.push_back($3); }
fields ',' insert_ident { Lex->field_list.push_back($3); }
| insert_ident { Lex->field_list.push_back($1); }
| insert_ident { Lex->field_list.push_back($1); };
;
insert_values:
insert_values:
VALUES values_list {}
VALUES values_list {}
...
...
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