~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/null.result

  • Committer: Lee Bieber
  • Date: 2010-11-04 14:34:26 UTC
  • mfrom: (1902.1.3 build)
  • Revision ID: kalebral@gmail.com-20101104143426-7j06brcd847kl52n
Merge Stewart - some very simple HailDB plugin docs.
Merge Patrick - fix bug 666548: Several tests that make use of hard-coded paths for INFILE commands are failing when test-run used with --mem
Merge Stewart - fix some warnings when making docs.

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 '../../std_data_ln/null_test.txt' INTO TABLE t1 FIELDS ENCLOSED BY '"';
 
117
LOAD DATA INFILE 'DRIZZLETEST_VARDIR/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));