~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/broken/r/show_check.result

  • Committer: Stewart Smith
  • Date: 2008-12-22 05:18:54 UTC
  • mto: This revision was merged to the branch mainline in revision 728.
  • Revision ID: stewart@flamingspork.com-20081222051854-nurhz0ddhd8x12sp
fix CREATE statements in show_check test. Add new (broken) frm test for use in future frm work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
586
586
  KEY "c2" ("c2") USING BTREE
587
587
) ENGINE=MyISAM DEFAULT CHARSET=latin1
588
588
DROP TABLE t1;
589
 
flush tables;
590
 
SHOW TABLE STATUS like 't1';
591
 
Name    Engine  Version Row_format      Rows    Avg_row_length  Data_length     Max_data_length Index_length    Data_free       Auto_increment  Create_time     Update_time     Check_time      Collation       Checksum        Create_options  Comment
592
 
t1      NULL    NULL    NULL    NULL    #       #       #       #       NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL    Incorrect information in file: './test/t1.frm'
593
 
show create table t1;
594
 
ERROR HY000: Incorrect information in file: './test/t1.frm'
595
 
drop table if exists t1;
596
589
 
597
590
# Bug#12183: SHOW OPEN TABLES behavior doesn't match grammar.
598
591