~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Olaf van der Spek
  • Date: 2011-08-04 08:13:04 UTC
  • mfrom: (2384 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2385.
  • Revision ID: olafvdspek@gmail.com-20110804081304-rlejjpvoos17bjdf
Merge trunk

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;