summaryrefslogtreecommitdiff
path: root/mysql-test/suite/maria/t/maria-autozerofill.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/maria/t/maria-autozerofill.test')
-rw-r--r--mysql-test/suite/maria/t/maria-autozerofill.test7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/suite/maria/t/maria-autozerofill.test b/mysql-test/suite/maria/t/maria-autozerofill.test
index 1a9445ed9f0..79e209d5d90 100644
--- a/mysql-test/suite/maria/t/maria-autozerofill.test
+++ b/mysql-test/suite/maria/t/maria-autozerofill.test
@@ -31,6 +31,8 @@ create table t3 (a int) engine=maria;
INSERT INTO t3 VALUES (1),(2);
create table t4 (a int) engine=maria;
INSERT INTO t4 VALUES (1),(2);
+create table t5 (a int) engine=maria;
+INSERT INTO t5 VALUES (1),(2);
flush tables;
# Check that table is not zerofilled, not movable
@@ -96,9 +98,14 @@ EOF
check table t2;
check table t2;
repair table t2;
+check table t2;
replace_result \\ /;
optimize table t3;
replace_result \\ /;
analyze table t4;
+repair table t5;
+check table t5;
+repair table t5;
+check table t5;
drop database mysqltest;