summaryrefslogtreecommitdiff
path: root/mysql-test/t/insert_select.test
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
commitbab42f674d95186ccc7a3fdb4901fbb0b00a1b96 (patch)
tree18a8e98d0082cdf6308374068d3790ba225348bc /mysql-test/t/insert_select.test
parentb10600528dfd92a4d1dcd5d3bff1e0c0f41672a8 (diff)
downloadmariadb-git-bab42f674d95186ccc7a3fdb4901fbb0b00a1b96.tar.gz
after merge fix
Diffstat (limited to 'mysql-test/t/insert_select.test')
-rw-r--r--mysql-test/t/insert_select.test13
1 files changed, 0 insertions, 13 deletions
diff --git a/mysql-test/t/insert_select.test b/mysql-test/t/insert_select.test
index 93a7a3e5ab8..0f9a0ca4872 100644
--- a/mysql-test/t/insert_select.test
+++ b/mysql-test/t/insert_select.test
@@ -281,19 +281,6 @@ select * from t1;
drop table t1;
#
-# Bug#23170: LAST_INSERT_ID isn't reset to 0 in INSERT .. SELECT if no rows
-# were inserted.
-#
-create table t1(f1 int primary key auto_increment, f2 int unique);
-insert into t1(f2) values(1);
-select @@identity;
-insert ignore t1(f2) values(1);
-select @@identity;
-insert ignore t1(f2) select 1;
-select @@identity;
-drop table t1;
-
-#
# Bug#16630: wrong result, when INSERT t1 SELECT ... FROM t1 ON DUPLICATE
#
CREATE TABLE t1 (f1 INT, f2 INT );