~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mix2_myisam.result

  • Committer: Brian Aker
  • Date: 2009-11-13 00:56:59 UTC
  • Revision ID: brian@gir.local-20091113005659-c8e29r7wt6x4irqw
Removed bits of charset support from the parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
331
331
drop table t1,t2;
332
332
create TEMPORARY table t1 (
333
333
id int NOT NULL auto_increment,
334
 
ggid varchar(32) binary DEFAULT '' NOT NULL,
 
334
ggid varchar(32) DEFAULT '' NOT NULL,
335
335
email varchar(64) DEFAULT '' NOT NULL,
336
 
passwd varchar(32) binary DEFAULT '' NOT NULL,
 
336
passwd varchar(32) DEFAULT '' NOT NULL,
337
337
PRIMARY KEY (id),
338
338
UNIQUE ggid (ggid)
339
339
) ENGINE=MyISAM;