~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create_not_windows.result

  • Committer: Brian Aker
  • Date: 2011-07-15 08:26:31 UTC
  • mto: (2392.1.1 drizzle-autoconf)
  • mto: This revision was merged to the branch mainline in revision 2369.
  • Revision ID: brian@tangent.org-20110715082631-y8oo7j1aug8nwlym
This patch fixes 798940, we will also just now add the type of index to our create statements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
about:text      CREATE TEMPORARY TABLE `about:text` (
10
10
  `_id` INT NOT NULL AUTO_INCREMENT,
11
11
  `about:text` VARCHAR(255) COLLATE utf8_general_ci NOT NULL DEFAULT '',
12
 
  PRIMARY KEY (`_id`)
 
12
  PRIMARY KEY (`_id`) USING BTREE
13
13
) ENGINE=MyISAM COLLATE = utf8_general_ci
14
14
drop table `about:text`;