~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create_not_windows.result

  • Committer: Monty Taylor
  • Date: 2009-02-17 10:00:38 UTC
  • mto: This revision was merged to the branch mainline in revision 888.
  • Revision ID: mordred@inaugust.com-20090217100038-ywlg7whtxdl9od5u
Update tests based on how Toru's latest patch changes create table statements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
Table   Create Table
9
9
about:text      CREATE TABLE `about:text` (
10
10
  `_id` int NOT NULL AUTO_INCREMENT,
11
 
  `about:text` varchar(255) NOT NULL,
 
11
  `about:text` varchar(255) NOT NULL DEFAULT '',
12
12
  PRIMARY KEY (`_id`)
13
13
) ENGINE=MyISAM
14
14
drop table `about:text`;