summaryrefslogtreecommitdiff
path: root/mysql-test/t/heap_auto_increment.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/heap_auto_increment.test')
-rw-r--r--mysql-test/t/heap_auto_increment.test3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/heap_auto_increment.test b/mysql-test/t/heap_auto_increment.test
index 8a0d19d9183..6f392f6830d 100644
--- a/mysql-test/t/heap_auto_increment.test
+++ b/mysql-test/t/heap_auto_increment.test
@@ -2,7 +2,10 @@
# Test of auto_increment; The test for BDB tables is in bdb.test
#
+--disable_warnings
drop table if exists t1;
+--enable_warnings
+
create table t1 (a int not null auto_increment,b int, primary key (a)) type=heap auto_increment=3;
insert into t1 values (1,1),(NULL,3),(NULL,4);
delete from t1 where a=4;