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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user