~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/null.result

  • Committer: Brian Aker
  • Date: 2010-10-28 17:12:01 UTC
  • mfrom: (1887.1.3 merge)
  • Revision ID: brian@tangent.org-20101028171201-baj6l1bnntn1s4ad
Merge in POTFILES changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
UPDATE t1 SET d=NULL;
115
115
ERROR 23000: Column 'd' cannot be null
116
116
truncate table t1;
117
 
LOAD DATA INFILE 'DRIZZLETEST_VARDIR/std_data_ln/null_test.txt' INTO TABLE t1 FIELDS ENCLOSED BY '"';
 
117
LOAD DATA INFILE '../../std_data_ln/null_test.txt' INTO TABLE t1 FIELDS ENCLOSED BY '"';
118
118
ERROR 22004: Column set to default value; NULL supplied to NOT NULL column 'a' at row 1
119
119
drop table t1;
120
120
create table t1 (a int not null, b int not null, index idx(a));