~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/analyze.result

  • Committer: Stewart Smith
  • Date: 2009-10-19 03:27:43 UTC
  • mto: This revision was merged to the branch mainline in revision 1188.
  • Revision ID: stewart@flamingspork.com-20091019032743-xajbflq0ktpe9vw2
remove --disable-warnings in func_in_null_scan.test

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
Table   Op      Msg_type        Msg_text
27
27
test.t1 check   status  OK
28
28
drop table t1;
29
 
create TEMPORARY table t1 (a varchar(10), key key1(a)) collate=utf8_general_ci engine=myisam;
 
29
create TEMPORARY table t1 (a varchar(10), key key1(a)) collate utf8_general_ci engine myisam;
30
30
insert into t1 values ('hello');
31
31
analyze table t1;
32
32
Table   Op      Msg_type        Msg_text
41
41
Table   Op      Msg_type        Msg_text
42
42
test.t1 analyze status  OK
43
43
show index from t1;
44
 
Table   Unique  Key_name        Seq_in_index    Column_name
45
 
t1      NO      a       1       a
 
44
Table   Non_unique      Key_name        Seq_in_index    Column_name     Collation       Cardinality     Sub_part        Packed  Null    Index_type      Comment Index_Comment
 
45
t1      1       a       1       a       A       5       NULL    NULL    YES     BTREE           
46
46
drop table t1;
47
47
End of 4.1 tests
48
48
End of 5.0 tests