diff options
author | unknown <serg@serg.mysql.com> | 2002-03-13 17:20:17 +0000 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2002-03-13 17:20:17 +0000 |
commit | d556096f73320f173611f4551a24289b4877f8e6 (patch) | |
tree | 139ad5717d9b91fd8556d7463a529e063b8c5480 /mysql-test/r/show_check.result | |
parent | 1b1f52631f4494d07c7e3335573855c5ced6b3c1 (diff) | |
download | mariadb-git-d556096f73320f173611f4551a24289b4877f8e6.tar.gz |
mi_check flags cleanup
CHECK/REPAIR syntax cleanup
REPAIR ... USE_FRM syntax
include/myisam.h:
mi_check flags cleanup
myisam/mi_check.c:
mi_check flags cleanup
myisam/myisamchk.c:
mi_check flags cleanup
mysql-test/r/check.result:
CHECK/REPAIR syntax cleanup
mysql-test/r/show_check.result:
CHECK/REPAIR syntax cleanup
mysql-test/t/check.test:
CHECK/REPAIR syntax cleanup
mysql-test/t/show_check.test:
CHECK/REPAIR syntax cleanup
sql/ha_myisam.cc:
mi_check flags cleanup
sql/handler.h:
mi_check flags cleanup
sql/lex.h:
REPAIR ... USE_FRM syntax
sql/slave.cc:
mi_check flags cleanup
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; |