summaryrefslogtreecommitdiff
path: root/mysql-test/r/insert_select.result
diff options
context:
space:
mode:
authorgluh@mysql.com/eagle.(none) <>2007-02-26 16:52:54 +0400
committergluh@mysql.com/eagle.(none) <>2007-02-26 16:52:54 +0400
commit086aa9d3c0c662c9000feb5d3bb6b84923abd8aa (patch)
tree18a8e98d0082cdf6308374068d3790ba225348bc /mysql-test/r/insert_select.result
parent975a23ed0f3eed0f1d7e48743503a652682976ba (diff)
downloadmariadb-git-086aa9d3c0c662c9000feb5d3bb6b84923abd8aa.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);