~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/innodb_autoinc_lock_mode_zero.test

  • 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:
14
14
 
15
15
CREATE TABLE t1 (
16
16
  id int NOT NULL auto_increment,
17
 
  ggid varchar(32) binary DEFAULT '' NOT NULL,
 
17
  ggid varchar(32) DEFAULT '' NOT NULL,
18
18
  email varchar(64) DEFAULT '' NOT NULL,
19
 
  passwd varchar(32) binary DEFAULT '' NOT NULL,
 
19
  passwd varchar(32) DEFAULT '' NOT NULL,
20
20
  PRIMARY KEY (id),
21
21
  UNIQUE ggid (ggid)
22
22
) ENGINE=innodb;