diff options
Diffstat (limited to 'mysql-test/t/show_check.test')
-rw-r--r-- | mysql-test/t/show_check.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index 935e472c4a1..81cd024e4b3 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -209,30 +209,37 @@ CREATE TABLE t3 ( insert into t1 values (1),(2); insert into t2 values (1),(2); insert into t3 values (1,1),(2,2); +--replace_column 6 # 7 # 8 # show table status; insert into t1 values (3),(4); insert into t2 values (3),(4); insert into t3 values (3,3),(4,4); +--replace_column 6 # 7 # 8 # show table status; insert into t1 values (5); insert into t2 values (5); insert into t3 values (5,5); +--replace_column 6 # 7 # 8 # show table status; delete from t1 where a=3; delete from t2 where b=3; delete from t3 where a=3; +--replace_column 6 # 7 # 8 # show table status; delete from t1; delete from t2; delete from t3; +--replace_column 6 # 7 # 8 # show table status; insert into t1 values (5); insert into t2 values (5); insert into t3 values (5,5); +--replace_column 6 # 7 # 8 # show table status; delete from t1 where a=5; delete from t2 where b=5; delete from t3 where a=5; +--replace_column 6 # 7 # 8 # show table status; drop table t1, t2, t3; |