1
create table t1 (a bigint);
3
insert into t1 values(0);
5
Table Op Msg_type Msg_text
6
test.t1 analyze status OK
9
Table Op Msg_type Msg_text
10
test.t1 check status OK
12
create table t1 (a bigint);
13
insert into t1 values(0);
17
Table Op Msg_type Msg_text
18
test.t1 analyze status OK
21
Table Op Msg_type Msg_text
22
test.t1 check status OK
24
create table t1 (a bigint);
25
insert into t1 values(0);
27
Table Op Msg_type Msg_text
28
test.t1 analyze status OK
30
Table Op Msg_type Msg_text
31
test.t1 check status OK
33
create table t1 (a mediumtext, fulltext key key1(a)) charset utf8 collate utf8_general_ci engine myisam;
34
insert into t1 values ('hello');
36
Table Op Msg_type Msg_text
37
test.t1 analyze status OK
39
Table Op Msg_type Msg_text
40
test.t1 analyze status Table is already up to date
42
create temporary table t1(a int, index(a));
43
insert into t1 values('1'),('2'),('3'),('4'),('5');
45
Table Op Msg_type Msg_text
46
test.t1 analyze status OK
48
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment Index_Comment
49
t1 1 a 1 a A 5 NULL NULL YES BTREE
52
create table t1(a int);
53
analyze table t1 extended;
54
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'extended' at line 1
55
optimize table t1 extended;
56
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'extended' at line 1