diff options
Diffstat (limited to 'mysql-test/suite/maria/optimize.result')
-rw-r--r-- | mysql-test/suite/maria/optimize.result | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/suite/maria/optimize.result b/mysql-test/suite/maria/optimize.result new file mode 100644 index 00000000..a78e8e46 --- /dev/null +++ b/mysql-test/suite/maria/optimize.result @@ -0,0 +1,19 @@ +drop table if exists t1; +check table t1; +Table Op Msg_type Msg_text +test.t1 check status OK +OPTIMIZE TABLE t1; +Table Op Msg_type Msg_text +test.t1 optimize status OK +drop table t1; +# +# MDEV-3870 - Valgrind warnings on OPTIMIZE MyISAM or Aria TABLE with +# disabled keys +# +CREATE TABLE t1 (a INT, KEY(a)) ENGINE=Aria; +INSERT INTO t1 VALUES (4),(3),(1),(0); +ALTER TABLE t1 DISABLE KEYS; +OPTIMIZE TABLE t1; +Table Op Msg_type Msg_text +test.t1 optimize status OK +DROP TABLE t1; |