~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/r/basic_create_nullable.result

  • Committer: Andrew Hutchings
  • Date: 2010-09-08 19:03:09 UTC
  • mfrom: (1750 staging)
  • mto: (1750.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1751.
  • Revision ID: andrew@linuxjedi.co.uk-20100908190309-mya1nu7xvo1fpvk8
Merge trunk into branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
show create table t1;
3
3
Table   Create Table
4
4
t1      CREATE TABLE `t1` (
5
 
  `a` int DEFAULT NULL,
6
 
  `b` int NOT NULL,
7
 
  `c` int DEFAULT NULL,
8
 
  `d` int NOT NULL,
9
 
  `pk` int NOT NULL,
 
5
  `a` INT DEFAULT NULL,
 
6
  `b` INT NOT NULL,
 
7
  `c` INT DEFAULT NULL,
 
8
  `d` INT NOT NULL,
 
9
  `pk` INT NOT NULL,
10
10
  PRIMARY KEY (`pk`)
11
11
) ENGINE=InnoDB COLLATE = utf8_general_ci
12
12
insert into t1 values (0,0, 0, 0,0);