~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: lbieber
  • Date: 2010-09-17 22:44:06 UTC
  • mfrom: (1773.1.3 stewart)
  • Revision ID: lbieber@orisndriz08-20100917224406-j4hfl9f08ey9fsbk
Merge Stewart - remove a bunch of trailing whitespaces
Merge Stewart - fix pbxt test cases to run with  pbxt
Merge Stewart - more moving math functions to plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SET SESSION storage_engine=pbxt;
1
2
create table t1 (a int, b int not null, c int null, d int not null, pk int primary key);
2
3
show create table t1;
3
4
Table   Create Table
8
9
  `d` INT NOT NULL,
9
10
  `pk` INT NOT NULL,
10
11
  PRIMARY KEY (`pk`)
11
 
) ENGINE=InnoDB COLLATE = utf8_general_ci
 
12
) ENGINE=PBXT COLLATE = utf8_general_ci
12
13
insert into t1 values (0,0, 0, 0,0);
13
14
insert into t1 values (NULL, NULL, NULL, NULL, 1);
14
15
ERROR 23000: Column 'b' cannot be null