summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <Sinisa@sinisa.nasamreza.org>2003-01-28 18:55:52 +0200
committerunknown <Sinisa@sinisa.nasamreza.org>2003-01-28 18:55:52 +0200
commit7b137f15bd28727a62a6215cf21a92878948760e (patch)
treed27edf299c75a16858a77c7a707b5af28fc814a7 /mysql-test/r
parentd2b66206219ba5b4eabbef46588b642443745669 (diff)
downloadmariadb-git-7b137f15bd28727a62a6215cf21a92878948760e.tar.gz
A feature of doing automatick result buffering when INSERT is
done from the select containing a table to be inserted to.
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/insert.result13
-rw-r--r--mysql-test/r/subselect.result3
2 files changed, 15 insertions, 1 deletions
diff --git a/mysql-test/r/insert.result b/mysql-test/r/insert.result
index ebd34dd7668..3be04584749 100644
--- a/mysql-test/r/insert.result
+++ b/mysql-test/r/insert.result
@@ -64,3 +64,16 @@ use test_$1;
create table t1 (c int);
insert into test_$1.t1 set test_$1.t1.c = '1';
drop database test_$1;
+use test;
+drop table if exists t1,t2,t3;
+create table t1(id1 int not null auto_increment primary key, t char(12));
+create table t2(id2 int not null, t char(12));
+create table t3(id3 int not null, t char(12), index(id3));
+select count(*) from t2;
+count(*)
+500
+insert into t2 select t1.* from t1, t2 t, t3 where t1.id1 = t.id2 and t.id2 = t3.id3;
+select count(*) from t2;
+count(*)
+25500
+drop table if exists t1,t2,t3;
diff --git a/mysql-test/r/subselect.result b/mysql-test/r/subselect.result
index 04bf0575db3..ca3323adb6c 100644
--- a/mysql-test/r/subselect.result
+++ b/mysql-test/r/subselect.result
@@ -576,7 +576,6 @@ x
3
3
INSERT INTO t1 (x) select (SELECT SUM(x)+2 FROM t1) FROM t2;
-You can't specify target table 't1' for update in FROM clause
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(x) FROM t2));
select * from t1;
x
@@ -584,6 +583,8 @@ x
2
3
3
+11
+11
0
drop table t1, t2, t3;
CREATE TABLE t1 (x int not null, y int, primary key (x));