~linuxjedi/drizzle/elliott-bug-653300

« back to all changes in this revision

Viewing changes to tests/r/null.result

  • Committer: lbieber
  • Date: 2010-09-26 03:23:39 UTC
  • mfrom: (1793.1.1 build)
  • Revision ID: lbieber@orisndriz08-20100926032339-59p5xxhkloa09759
Merge Monty - Beginning of catalog support, adds a default local catalog. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
UPDATE t1 SET d=NULL;
126
126
ERROR 23000: Column 'd' cannot be null
127
127
truncate table t1;
128
 
LOAD DATA INFILE '../std_data_ln/null_test.txt' INTO TABLE t1 FIELDS ENCLOSED BY '"';
 
128
LOAD DATA INFILE '../../std_data_ln/null_test.txt' INTO TABLE t1 FIELDS ENCLOSED BY '"';
129
129
ERROR 22004: Column set to default value; NULL supplied to NOT NULL column 'a' at row 1
130
130
drop table t1;
131
131
create table t1 (a int not null, b int not null, index idx(a));