~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/show_check.test

  • Committer: Brian Aker
  • Date: 2009-01-17 17:08:25 UTC
  • Revision ID: brian@gir-3.local-20090117170825-l7vo00mje6uk5cg0
Test case fixes + TABLE_CACHE to class (will rename in manner which is NOT
YELLING CASE UP).

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
  `space 2` int comment 'name with a space'
103
103
  ) comment = 'it\'s a table' ;
104
104
show create table t1;
105
 
set sql_quote_show_create=0;
106
 
show create table t1;
107
 
set sql_quote_show_create=1;
108
105
show full columns from t1;
109
106
drop table t1;
110
107