1
create table t1 (a bigint);
2
insert into t1 values(0);
4
Table Op Msg_type Msg_text
5
test.t1 analyze status OK
7
Table Op Msg_type Msg_text
8
test.t1 check status OK
10
create table t1 (a bigint);
11
insert into t1 values(0);
14
Table Op Msg_type Msg_text
15
test.t1 analyze status OK
17
Table Op Msg_type Msg_text
18
test.t1 check status OK
20
create table t1 (a bigint);
21
insert into t1 values(0);
23
Table Op Msg_type Msg_text
24
test.t1 analyze status OK
26
Table Op Msg_type Msg_text
27
test.t1 check status OK
29
create TEMPORARY table t1 (a varchar(10), key key1(a)) collate=utf8_general_ci engine=myisam;
30
insert into t1 values ('hello');
32
Table Op Msg_type Msg_text
33
test.t1 analyze note The storage engine for the table doesn't support analyze
35
Table Op Msg_type Msg_text
36
test.t1 analyze note The storage engine for the table doesn't support analyze
38
create temporary table t1(a int, index(a));
39
insert into t1 values('1'),('2'),('3'),('4'),('5');
41
Table Op Msg_type Msg_text
42
test.t1 analyze status OK
44
Table Unique Key_name Seq_in_index Column_name