~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/pbxt/analyze.result

  • Committer: Brian Aker
  • Date: 2010-04-12 07:43:55 UTC
  • mfrom: (1455.3.13 drizzle-pbxt-6)
  • Revision ID: brian@gaz-20100412074355-udi9dwjlcnmz0oz6
Merge PBXT

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create table t1 (a bigint);
 
2
insert into t1 values(0);
 
3
analyze table t1;
 
4
Table   Op      Msg_type        Msg_text
 
5
test.t1 analyze note    The storage engine for the table doesn't support analyze
 
6
check table t1;
 
7
Table   Op      Msg_type        Msg_text
 
8
test.t1 check   status  OK
 
9
drop table t1;
 
10
create table t1 (a bigint);
 
11
insert into t1 values(0);
 
12
delete from t1;
 
13
analyze table t1;
 
14
Table   Op      Msg_type        Msg_text
 
15
test.t1 analyze note    The storage engine for the table doesn't support analyze
 
16
check table t1;
 
17
Table   Op      Msg_type        Msg_text
 
18
test.t1 check   status  OK
 
19
drop table t1;
 
20
create table t1 (a bigint);
 
21
insert into t1 values(0);
 
22
analyze table t1;
 
23
Table   Op      Msg_type        Msg_text
 
24
test.t1 analyze note    The storage engine for the table doesn't support analyze
 
25
check table t1;
 
26
Table   Op      Msg_type        Msg_text
 
27
test.t1 check   status  OK
 
28
drop table t1;
 
29
create TEMPORARY table t1 (a varchar(10), key key1(a)) collate utf8_general_ci engine myisam;
 
30
insert into t1 values ('hello');
 
31
analyze table t1;
 
32
Table   Op      Msg_type        Msg_text
 
33
test.t1 analyze note    The storage engine for the table doesn't support analyze
 
34
analyze table t1;
 
35
Table   Op      Msg_type        Msg_text
 
36
test.t1 analyze note    The storage engine for the table doesn't support analyze
 
37
drop table t1;
 
38
create temporary table t1(a int, index(a));
 
39
insert into t1 values('1'),('2'),('3'),('4'),('5');
 
40
analyze table t1;
 
41
Table   Op      Msg_type        Msg_text
 
42
test.t1 analyze note    The storage engine for the table doesn't support analyze
 
43
show index from t1;
 
44
Table   Unique  Key_name        Seq_in_index    Column_name
 
45
t1      FALSE   a       1       a
 
46
drop table t1;
 
47
End of 4.1 tests
 
48
End of 5.0 tests