~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/parser_bug21114_innodb.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:
5
5
abs     CREATE TABLE `abs` (
6
6
  `col1` int NOT NULL,
7
7
  `col2` int NOT NULL,
8
 
  `col3` varchar(10),
 
8
  `col3` varchar(10) DEFAULT NULL,
9
9
  PRIMARY KEY (`col1`,`col2`)
10
10
) ENGINE=InnoDB
11
11
SHOW CREATE TABLE bug21114_child;
30
30
field   CREATE TABLE `field` (
31
31
  `col1` int NOT NULL,
32
32
  `col2` int NOT NULL,
33
 
  `col3` varchar(10),
 
33
  `col3` varchar(10) DEFAULT NULL,
34
34
  PRIMARY KEY (`col1`,`col2`)
35
35
) ENGINE=InnoDB
36
36
SHOW CREATE TABLE bug21114_child;
55
55
format  CREATE TABLE `format` (
56
56
  `col1` int NOT NULL,
57
57
  `col2` int NOT NULL,
58
 
  `col3` varchar(10),
 
58
  `col3` varchar(10) DEFAULT NULL,
59
59
  PRIMARY KEY (`col1`,`col2`)
60
60
) ENGINE=InnoDB
61
61
SHOW CREATE TABLE bug21114_child;