summaryrefslogtreecommitdiff
path: root/mysql-test/r/insert_select.result
diff options
context:
space:
mode:
authorunknown <gluh@mysql.com/eagle.(none)>2007-02-26 16:52:54 +0400
committerunknown <gluh@mysql.com/eagle.(none)>2007-02-26 16:52:54 +0400
commit46f1341846a0618b9999f8a7c3717637a4e85c65 (patch)
tree18a8e98d0082cdf6308374068d3790ba225348bc /mysql-test/r/insert_select.result
parent65c7f3811c3be5f67a162b06906cbb172beb5318 (diff)
downloadmariadb-git-46f1341846a0618b9999f8a7c3717637a4e85c65.tar.gz
after merge fix
Diffstat (limited to 'mysql-test/r/insert_select.result')
-rw-r--r--mysql-test/r/insert_select.result14
1 files changed, 0 insertions, 14 deletions
diff --git a/mysql-test/r/insert_select.result b/mysql-test/r/insert_select.result
index 77420890053..18a0ed1a1cb 100644
--- a/mysql-test/r/insert_select.result
+++ b/mysql-test/r/insert_select.result
@@ -717,20 +717,6 @@ select * from t1;
f1 f2
1 2
drop table t1;
-create table t1(f1 int primary key auto_increment, f2 int unique);
-insert into t1(f2) values(1);
-select @@identity;
-@@identity
-1
-insert ignore t1(f2) values(1);
-select @@identity;
-@@identity
-0
-insert ignore t1(f2) select 1;
-select @@identity;
-@@identity
-0
-drop table t1;
CREATE TABLE t1 (f1 INT, f2 INT );
CREATE TABLE t2 (f1 INT PRIMARY KEY, f2 INT);
INSERT INTO t1 VALUES (1,1),(2,2),(10,10);