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
fdb3eaf3
Commit
fdb3eaf3
authored
Nov 26, 2002
by
bell@sanja.is.com.ua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
subselects in insert/replace (SCRUM)
parent
b8f5fc3a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
128 additions
and
12 deletions
+128
-12
mysql-test/r/subselect.result
mysql-test/r/subselect.result
+61
-1
mysql-test/t/subselect.test
mysql-test/t/subselect.test
+38
-1
sql/sql_insert.cc
sql/sql_insert.cc
+22
-9
sql/sql_yacc.yy
sql/sql_yacc.yy
+7
-1
No files found.
mysql-test/r/subselect.result
View file @
fdb3eaf3
...
@@ -335,7 +335,6 @@ a b
...
@@ -335,7 +335,6 @@ a b
1 21
1 21
2 22
2 22
drop table t1, t2;
drop table t1, t2;
drop table if exists t1, t2;
create table t1 (a int NOT NULL, b int, primary key (a));
create table t1 (a int NOT NULL, b int, primary key (a));
create table t2 (a int NOT NULL, b int, primary key (a));
create table t2 (a int NOT NULL, b int, primary key (a));
insert into t1 values (0, 10),(1, 11),(2, 12);
insert into t1 values (0, 10),(1, 11),(2, 12);
...
@@ -354,3 +353,64 @@ a b
...
@@ -354,3 +353,64 @@ a b
0 10
0 10
1 11
1 11
drop table t1, t2;
drop table t1, t2;
CREATE TABLE t1 (x int);
create table t2 (a int);
insert into t2 values (1);
INSERT INTO t1 (x) VALUES ((SELECT a FROM t2));
select * from t1;
x
1
insert into t2 values (1);
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
select * from t1;
x
1
2
INSERT INTO t1 (x) select (SELECT SUM(a)+1 FROM t2) FROM t2;
select * from t1;
x
1
2
3
3
INSERT INTO t1 (x) select (SELECT SUM(x)+2 FROM t1) FROM t2;
INSERT TABLE 't1' isn't allowed in FROM table list
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(x) FROM t1));
select * from t1;
x
1
2
3
3
9
drop table t1, t2;
CREATE TABLE t1 (x int not null, y int, primary key (x));
create table t2 (a int);
insert into t2 values (1);
select * from t1;
x y
replace into t1 (x, y) VALUES ((SELECT a FROM t2), (SELECT a+1 FROM t2));
select * from t1;
x y
1 2
replace into t1 (x, y) VALUES ((SELECT a FROM t2), (SELECT a+2 FROM t2));
select * from t1;
x y
1 3
replace DELAYED into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a FROM t2));
select * from t1;
x y
1 3
4 1
replace DELAYED into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a+1 FROM t2));
select * from t1;
x y
1 3
4 2
replace LOW_PRIORITY into t1 (x, y) VALUES ((SELECT a+1 FROM t2), (SELECT a FROM t2));
select * from t1;
x y
1 3
4 2
2 1
drop table t1, t2;
mysql-test/t/subselect.test
View file @
fdb3eaf3
...
@@ -216,7 +216,6 @@ select * from t1;
...
@@ -216,7 +216,6 @@ select * from t1;
drop
table
t1
,
t2
;
drop
table
t1
,
t2
;
#delete with subselects
#delete with subselects
drop
table
if
exists
t1
,
t2
;
create
table
t1
(
a
int
NOT
NULL
,
b
int
,
primary
key
(
a
));
create
table
t1
(
a
int
NOT
NULL
,
b
int
,
primary
key
(
a
));
create
table
t2
(
a
int
NOT
NULL
,
b
int
,
primary
key
(
a
));
create
table
t2
(
a
int
NOT
NULL
,
b
int
,
primary
key
(
a
));
insert
into
t1
values
(
0
,
10
),(
1
,
11
),(
2
,
12
);
insert
into
t1
values
(
0
,
10
),(
1
,
11
),(
2
,
12
);
...
@@ -226,3 +225,41 @@ select * from t1 where b = (select b from t2 where t1.a = t2.a);
...
@@ -226,3 +225,41 @@ select * from t1 where b = (select b from t2 where t1.a = t2.a);
delete
from
t1
where
b
=
(
select
b
from
t2
where
t1
.
a
=
t2
.
a
);
delete
from
t1
where
b
=
(
select
b
from
t2
where
t1
.
a
=
t2
.
a
);
select
*
from
t1
;
select
*
from
t1
;
drop
table
t1
,
t2
;
drop
table
t1
,
t2
;
#insert with subselects
CREATE
TABLE
t1
(
x
int
);
create
table
t2
(
a
int
);
insert
into
t2
values
(
1
);
INSERT
INTO
t1
(
x
)
VALUES
((
SELECT
a
FROM
t2
));
select
*
from
t1
;
insert
into
t2
values
(
1
);
INSERT
DELAYED
INTO
t1
(
x
)
VALUES
((
SELECT
SUM
(
a
)
FROM
t2
));
--
sleep
1
select
*
from
t1
;
INSERT
INTO
t1
(
x
)
select
(
SELECT
SUM
(
a
)
+
1
FROM
t2
)
FROM
t2
;
select
*
from
t1
;
--
error
1093
INSERT
INTO
t1
(
x
)
select
(
SELECT
SUM
(
x
)
+
2
FROM
t1
)
FROM
t2
;
INSERT
DELAYED
INTO
t1
(
x
)
VALUES
((
SELECT
SUM
(
x
)
FROM
t1
));
--
sleep
1
select
*
from
t1
;
drop
table
t1
,
t2
;
#replace with subselects
CREATE
TABLE
t1
(
x
int
not
null
,
y
int
,
primary
key
(
x
));
create
table
t2
(
a
int
);
insert
into
t2
values
(
1
);
select
*
from
t1
;
replace
into
t1
(
x
,
y
)
VALUES
((
SELECT
a
FROM
t2
),
(
SELECT
a
+
1
FROM
t2
));
select
*
from
t1
;
replace
into
t1
(
x
,
y
)
VALUES
((
SELECT
a
FROM
t2
),
(
SELECT
a
+
2
FROM
t2
));
select
*
from
t1
;
replace
DELAYED
into
t1
(
x
,
y
)
VALUES
((
SELECT
a
+
3
FROM
t2
),
(
SELECT
a
FROM
t2
));
--
sleep
1
select
*
from
t1
;
replace
DELAYED
into
t1
(
x
,
y
)
VALUES
((
SELECT
a
+
3
FROM
t2
),
(
SELECT
a
+
1
FROM
t2
));
--
sleep
1
select
*
from
t1
;
replace
LOW_PRIORITY
into
t1
(
x
,
y
)
VALUES
((
SELECT
a
+
1
FROM
t2
),
(
SELECT
a
FROM
t2
));
select
*
from
t1
;
drop
table
t1
,
t2
;
sql/sql_insert.cc
View file @
fdb3eaf3
...
@@ -114,6 +114,8 @@ int mysql_insert(THD *thd,TABLE_LIST *table_list, List<Item> &fields,
...
@@ -114,6 +114,8 @@ int mysql_insert(THD *thd,TABLE_LIST *table_list, List<Item> &fields,
List_item
*
values
;
List_item
*
values
;
char
*
query
=
thd
->
query
;
char
*
query
=
thd
->
query
;
thr_lock_type
lock_type
=
table_list
->
lock_type
;
thr_lock_type
lock_type
=
table_list
->
lock_type
;
TABLE_LIST
*
insert_table_list
=
(
TABLE_LIST
*
)
thd
->
lex
.
select_lex
.
table_list
.
first
;
DBUG_ENTER
(
"mysql_insert"
);
DBUG_ENTER
(
"mysql_insert"
);
/*
/*
...
@@ -126,7 +128,9 @@ int mysql_insert(THD *thd,TABLE_LIST *table_list, List<Item> &fields,
...
@@ -126,7 +128,9 @@ int mysql_insert(THD *thd,TABLE_LIST *table_list, List<Item> &fields,
thd
->
slave_thread
))
||
thd
->
slave_thread
))
||
(
lock_type
==
TL_WRITE_CONCURRENT_INSERT
&&
duplic
==
DUP_REPLACE
))
(
lock_type
==
TL_WRITE_CONCURRENT_INSERT
&&
duplic
==
DUP_REPLACE
))
lock_type
=
TL_WRITE
;
lock_type
=
TL_WRITE
;
table_list
->
lock_type
=
lock_type
;
int
res
;
if
(
lock_type
==
TL_WRITE_DELAYED
)
if
(
lock_type
==
TL_WRITE_DELAYED
)
{
{
if
(
thd
->
locked_tables
)
if
(
thd
->
locked_tables
)
...
@@ -141,25 +145,34 @@ int mysql_insert(THD *thd,TABLE_LIST *table_list, List<Item> &fields,
...
@@ -141,25 +145,34 @@ int mysql_insert(THD *thd,TABLE_LIST *table_list, List<Item> &fields,
DBUG_RETURN
(
-
1
);
DBUG_RETURN
(
-
1
);
}
}
}
}
if
(
!
(
table
=
delayed_get_table
(
thd
,
table_list
))
&&
!
thd
->
fatal_error
)
if
((
table
=
delayed_get_table
(
thd
,
table_list
))
&&
!
thd
->
fatal_error
)
table
=
open_ltable
(
thd
,
table_list
,
lock_type
=
thd
->
update_lock_default
);
if
(
table_list
->
next
&&
table
)
res
=
open_and_lock_tables
(
thd
,
table_list
->
next
);
else
res
=
(
table
==
0
);
else
res
=
open_and_lock_tables
(
thd
,
table_list
);
}
}
else
else
table
=
open_ltable
(
thd
,
table_list
,
lock_type
);
res
=
open_and_lock_tables
(
thd
,
table_list
);
if
(
!
table
)
if
(
res
)
DBUG_RETURN
(
-
1
);
DBUG_RETURN
(
-
1
);
fix_tables_pointers
(
&
thd
->
lex
.
select_lex
);
table
=
table_list
->
table
;
thd
->
proc_info
=
"init"
;
thd
->
proc_info
=
"init"
;
thd
->
used_tables
=
0
;
thd
->
used_tables
=
0
;
save_time_stamp
=
table
->
time_stamp
;
save_time_stamp
=
table
->
time_stamp
;
values
=
its
++
;
values
=
its
++
;
if
(
check_insert_fields
(
thd
,
table
,
fields
,
*
values
,
1
)
||
if
(
check_insert_fields
(
thd
,
table
,
fields
,
*
values
,
1
)
||
setup_tables
(
table_list
)
||
setup_fields
(
thd
,
table_list
,
*
values
,
0
,
0
,
0
))
setup_tables
(
insert_table_list
)
||
setup_fields
(
thd
,
insert_table_list
,
*
values
,
0
,
0
,
0
))
{
{
table
->
time_stamp
=
save_time_stamp
;
table
->
time_stamp
=
save_time_stamp
;
goto
abort
;
goto
abort
;
}
}
value_count
=
values
->
elements
;
value_count
=
values
->
elements
;
while
((
values
=
its
++
))
while
((
values
=
its
++
))
{
{
counter
++
;
counter
++
;
if
(
values
->
elements
!=
value_count
)
if
(
values
->
elements
!=
value_count
)
...
@@ -170,9 +183,9 @@ int mysql_insert(THD *thd,TABLE_LIST *table_list, List<Item> &fields,
...
@@ -170,9 +183,9 @@ int mysql_insert(THD *thd,TABLE_LIST *table_list, List<Item> &fields,
table
->
time_stamp
=
save_time_stamp
;
table
->
time_stamp
=
save_time_stamp
;
goto
abort
;
goto
abort
;
}
}
if
(
setup_fields
(
thd
,
table_list
,
*
values
,
0
,
0
,
0
))
if
(
setup_fields
(
thd
,
insert_
table_list
,
*
values
,
0
,
0
,
0
))
{
{
table
->
time_stamp
=
save_time_stamp
;
table
->
time_stamp
=
save_time_stamp
;
goto
abort
;
goto
abort
;
}
}
}
}
...
...
sql/sql_yacc.yy
View file @
fdb3eaf3
...
@@ -2837,7 +2837,13 @@ opt_temporary:
...
@@ -2837,7 +2837,13 @@ opt_temporary:
*/
*/
insert:
insert:
INSERT { Lex->sql_command = SQLCOM_INSERT; } insert_lock_option
INSERT
{
LEX *lex= Lex;
lex->sql_command = SQLCOM_INSERT;
/* for subselects */
lex->lock_option= (using_update_log) ? TL_READ_NO_INSERT : TL_READ;
} insert_lock_option
opt_ignore insert2
opt_ignore insert2
{
{
Select->set_lock_for_tables($3);
Select->set_lock_for_tables($3);
...
...
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