diff options
author | unknown <serg@serg.mylan> | 2004-07-30 09:47:56 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-07-30 09:47:56 +0200 |
commit | e4525483524b701cf669b0adb75b392123870bf5 (patch) | |
tree | 23ce9bbd22f08095037ed99e535093dedaeeb1be /mysql-test/t/auto_increment.test | |
parent | b66a13eeb8f4a9bef7bda5a9d035328860fb7718 (diff) | |
download | mariadb-git-e4525483524b701cf669b0adb75b392123870bf5.tar.gz |
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
Diffstat (limited to 'mysql-test/t/auto_increment.test')
-rw-r--r-- | mysql-test/t/auto_increment.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/auto_increment.test b/mysql-test/t/auto_increment.test index 73588a91aac..65770f32476 100644 --- a/mysql-test/t/auto_increment.test +++ b/mysql-test/t/auto_increment.test @@ -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; |