mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / r / analyze.result
blobc3dbb84640286bf2af351a5f0dc26d28e1d62c96
1 create table t1 (a bigint);
2 lock tables t1 write;
3 insert into t1 values(0);
4 analyze table t1;
5 Table   Op      Msg_type        Msg_text
6 test.t1 analyze status  OK
7 unlock tables;
8 check table t1;
9 Table   Op      Msg_type        Msg_text
10 test.t1 check   status  OK
11 drop table t1;
12 create table t1 (a bigint);
13 insert into t1 values(0);
14 lock tables t1 write;
15 delete from t1;
16 analyze table t1;
17 Table   Op      Msg_type        Msg_text
18 test.t1 analyze status  OK
19 unlock tables;
20 check table t1;
21 Table   Op      Msg_type        Msg_text
22 test.t1 check   status  OK
23 drop table t1;
24 create table t1 (a bigint);
25 insert into t1 values(0);
26 analyze table t1;
27 Table   Op      Msg_type        Msg_text
28 test.t1 analyze status  OK
29 check table t1;
30 Table   Op      Msg_type        Msg_text
31 test.t1 check   status  OK
32 drop table t1;
33 create table t1 (a mediumtext, fulltext key key1(a)) charset utf8 collate utf8_general_ci engine myisam;
34 insert into t1 values ('hello');
35 analyze table t1;
36 Table   Op      Msg_type        Msg_text
37 test.t1 analyze status  OK
38 analyze table t1;
39 Table   Op      Msg_type        Msg_text
40 test.t1 analyze status  Table is already up to date
41 drop table t1;
42 CREATE TABLE t1 (a int);
43 prepare stmt1 from "SELECT * FROM t1 PROCEDURE ANALYSE()";
44 execute stmt1;
45 Field_name      Min_value       Max_value       Min_length      Max_length      Empties_or_zeros        Nulls   Avg_value_or_avg_length Std     Optimal_fieldtype
46 execute stmt1;
47 Field_name      Min_value       Max_value       Min_length      Max_length      Empties_or_zeros        Nulls   Avg_value_or_avg_length Std     Optimal_fieldtype
48 deallocate prepare stmt1;
49 drop table t1;
50 create temporary table t1(a int, index(a));
51 insert into t1 values('1'),('2'),('3'),('4'),('5');
52 analyze table t1;
53 Table   Op      Msg_type        Msg_text
54 test.t1 analyze status  OK
55 show index from t1;
56 Table   Non_unique      Key_name        Seq_in_index    Column_name     Collation       Cardinality     Sub_part        Packed  Null    Index_type      Comment
57 t1      1       a       1       a       A       5       NULL    NULL    YES     BTREE   
58 drop table t1;
59 End of 4.1 tests
60 create table t1(a int);
61 analyze table t1 extended;
62 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
63 optimize table t1 extended;
64 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
65 drop table t1;
66 End of 5.0 tests