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

This commit is contained in:
serg@serg.mylan
2004-07-30 09:47:56 +02:00
parent 3de8784b17
commit 3a17ab4551
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;