diff options
author | serg@serg.mysql.com <> | 2002-03-13 17:20:17 +0000 |
---|---|---|
committer | serg@serg.mysql.com <> | 2002-03-13 17:20:17 +0000 |
commit | 3f51fcf1f16653d6e4aff39a7b168ff1e8573870 (patch) | |
tree | 139ad5717d9b91fd8556d7463a529e063b8c5480 /mysql-test/r/show_check.result | |
parent | 2cac65ab72e367ec335911faacfdf933724215fd (diff) | |
download | mariadb-git-3f51fcf1f16653d6e4aff39a7b168ff1e8573870.tar.gz |
mi_check flags cleanup
CHECK/REPAIR syntax cleanup
REPAIR ... USE_FRM syntax
Diffstat (limited to 'mysql-test/r/show_check.result')
-rw-r--r-- | mysql-test/r/show_check.result | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/r/show_check.result b/mysql-test/r/show_check.result index 2530e5b09fb..d78f8b16170 100644 --- a/mysql-test/r/show_check.result +++ b/mysql-test/r/show_check.result @@ -1,23 +1,23 @@ drop table if exists t1,t2; create table t1 (a int not null primary key, b int not null,c int not null, key(b,c)); insert into t1 values (1,2,2),(2,2,3),(3,2,4),(4,2,4); -check table t1 type=fast; +check table t1 fast; Table Op Msg_type Msg_text test.t1 check status Table is already up to date -check table t1 type=fast; +check table t1 fast; Table Op Msg_type Msg_text test.t1 check status Table is already up to date -check table t1 type=changed; +check table t1 changed; Table Op Msg_type Msg_text test.t1 check status OK insert into t1 values (5,5,5); -check table t1 type=changed; +check table t1 changed; Table Op Msg_type Msg_text test.t1 check status OK -check table t1 type=medium; +check table t1 medium; Table Op Msg_type Msg_text test.t1 check status OK -check table t1 type=extended; +check table t1 extended; Table Op Msg_type Msg_text test.t1 check status OK show index from t1; |