~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/r/innodb-autoinc-44030.result

  • Committer: Mark Atwood
  • Date: 2011-07-18 21:41:28 UTC
  • mfrom: (2363.1.5 drizzle-trunk)
  • Revision ID: me@mark.atwood.name-20110718214128-tj8my4mqt62dslxn
mergeĀ lp:~brianaker/drizzle/798940

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
Table   Create Table
19
19
t1      CREATE TABLE `t1` (
20
20
  `d1` INT NOT NULL AUTO_INCREMENT,
21
 
  PRIMARY KEY (`d1`)
 
21
  PRIMARY KEY (`d1`) USING BTREE
22
22
) ENGINE=InnoDB COLLATE = utf8_general_ci AUTO_INCREMENT=3
23
23
INSERT INTO t1 VALUES(null);
24
24
SELECT * FROM t1;