1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

auto_value_on_zero bug test

mysql-test/r/auto_increment.result:
  bug test
mysql-test/t/auto_increment.test:
  bug test
sql/sql_base.cc:
  cleanup
This commit is contained in:
unknown
2004-07-30 09:47:56 +02:00
parent b66a13eeb8
commit e452548352
3 changed files with 20 additions and 4 deletions

View File

@@ -138,6 +138,8 @@ insert into t1(b)values(5);
insert into t1(b)values(6);
insert into t1(b)values(7);
select * from t1 order by b;
alter table t1 modify b mediumint;
select * from t1 order by b;
delete from t1 where a=0;
update t1 set a=0 where b=5;
select * from t1 order by b;