~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/show_check.result

  • 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:
209
209
  `c-b` int COMMENT 'name with a minus',
210
210
  `space 2` int COMMENT 'name with a space'
211
211
) ENGINE=InnoDB COMMENT='it''s a table'
212
 
set sql_quote_show_create=0;
213
 
show create table t1;
214
 
Table   Create Table
215
 
t1      CREATE TABLE `t1` (
216
 
  `name` varchar(20) COMMENT 'O''Brien as default',
217
 
  `c` int NOT NULL COMMENT 'int column',
218
 
  `c-b` int COMMENT 'name with a minus',
219
 
  `space 2` int COMMENT 'name with a space'
220
 
) ENGINE=InnoDB COMMENT='it''s a table'
221
 
set sql_quote_show_create=1;
222
212
show full columns from t1;
223
213
Field   Type    Collation       Null    Key     Default Extra   Privileges      Comment
224
214
name    varchar(20)     utf8_general_ci YES             NULL                    O'Brien as default