~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/null.test

  • Committer: Jay Pipes
  • Date: 2009-02-28 17:49:22 UTC
  • mto: (910.2.6 mordred-noatomics)
  • mto: This revision was merged to the branch mainline in revision 908.
  • Revision ID: jpipes@serialcoder-20090228174922-jczgt4d0662fqmnf
Merging in old r902 temporal changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
# Testing of NULL in a lot of different places
8
8
#
9
9
 
10
 
--error ER_DIVISION_BY_ZERO
11
10
select null,\N,isnull(null),isnull(1/0),isnull(1/0 = null),ifnull(null,1),ifnull(null,"TRUE"),ifnull("TRUE","ERROR"),1/0 is null,1 is not null;
12
 
--error ER_DIVISION_BY_ZERO
13
11
explain extended select null,\N,isnull(null),isnull(1/0),isnull(1/0 = null),ifnull(null,1),ifnull(null,"TRUE"),ifnull("TRUE","ERROR"),1/0 is null,1 is not null;
14
12
select CONCAT(1, NULL),1+NULL,1-NULL;
15
13
select NULL=NULL,NULL<>NULL,IFNULL(NULL,1.1)+0,CONCAT(IFNULL(NULL,1), 0);
67
65
 
68
66
# Test INSERT with NULL
69
67
 
70
 
--error ER_BAD_NULL_ERROR
 
68
--error 1048
71
69
INSERT INTO t1 (a) values (null);
72
 
--error ER_BAD_NULL_ERROR
 
70
--error 1048
73
71
INSERT INTO t1 (a) values (1/null);
74
 
--error ER_BAD_NULL_ERROR
 
72
--error 1048
75
73
INSERT INTO t1 (a) values (null),(null);
76
 
--error ER_BAD_NULL_ERROR
 
74
--error 1048
77
75
INSERT INTO t1 (b) values (null);
78
 
--error ER_BAD_NULL_ERROR
 
76
--error 1048
79
77
INSERT INTO t1 (b) values (1/null);
80
 
--error ER_BAD_NULL_ERROR
 
78
--error 1048
81
79
INSERT INTO t1 (b) values (null),(null);
82
 
--error ER_BAD_NULL_ERROR
 
80
--error 1048
83
81
INSERT INTO t1 (c) values (null);
84
 
--error ER_BAD_NULL_ERROR
 
82
--error 1048
85
83
INSERT INTO t1 (c) values (1/null);
86
 
--error ER_BAD_NULL_ERROR
 
84
--error 1048
87
85
INSERT INTO t1 (c) values (null),(null);
88
 
--error ER_BAD_NULL_ERROR
 
86
--error 1048
89
87
INSERT INTO t1 (d) values (null);
90
 
--error ER_BAD_NULL_ERROR
 
88
--error 1048
91
89
INSERT INTO t1 (d) values (1/null);
92
 
--error ER_BAD_NULL_ERROR
 
90
--error 1048
93
91
INSERT INTO t1 (d) values (null),(null);
94
92
 
95
93
# Test UPDATE with NULLs
101
99
# Insert a default row in order to test UPDATE to NULL error
102
100
INSERT INTO t1 VALUES ();
103
101
 
104
 
--error ER_BAD_NULL_ERROR
 
102
--error 1048
105
103
UPDATE t1 SET a=1/NULL;
106
 
--error ER_BAD_NULL_ERROR
 
104
--error 1048
107
105
UPDATE t1 SET a=NULL;
108
 
--error ER_BAD_NULL_ERROR
 
106
--error 1048
109
107
UPDATE t1 SET b=NULL;
110
 
--error ER_BAD_NULL_ERROR
 
108
--error 1048
111
109
UPDATE t1 SET c=NULL;
112
 
--error ER_BAD_NULL_ERROR
 
110
--error 1048
113
111
UPDATE t1 SET d=NULL;
114
112
 
115
113
truncate table t1;
119
117
# as 1048, only gives a "row" number.
120
118
# @TODO Is there really a reason for a separate error 
121
119
# just for LOAD DATA INFILE?
122
 
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
123
 
--error ER_WARN_NULL_TO_NOTNULL
124
 
eval LOAD DATA INFILE '$DRIZZLETEST_VARDIR/std_data_ln/null_test.txt' INTO TABLE t1 FIELDS ENCLOSED BY '"';
 
120
--error 1263
 
121
LOAD DATA INFILE '../std_data_ln/null_test.txt' INTO TABLE t1 FIELDS ENCLOSED BY '"';
125
122
 
126
123
drop table t1;
127
124
 
208
205
  lpad('str', 10, null) as c37,
209
206
  rpad(null, 10, 'str') as c38;
210
207
  
211
 
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
212
208
show create table t1;
213
209
drop table t1;
214
210
 
236
232
#create table bug19145c (e enum('a','b','c') not null default 'b' , s set('x', 'y', 'z') not null default 'y' ) engine=MyISAM;
237
233
 
238
234
# Invalid default value for 's'
239
 
#--error ER_INVALID_DEFAULT
 
235
#--error 1067
240
236
#create table bug19145setnotnulldefaultnull (e enum('a','b','c')          default null, s set('x', 'y', 'z') not null default null) engine=MyISAM;
241
237
 
242
238
# Invalid default value for 'e'
243
 
#--error ER_INVALID_DEFAULT
 
239
#--error 1067
244
240
#create table bug19145enumnotnulldefaultnull (e enum('a','b','c') not null default null, s set('x', 'y', 'z')          default null) engine=MyISAM;
245
241
 
246
242
#alter table bug19145a alter column e set default null;
252
248
#alter table bug19145b add column (i int);
253
249
 
254
250
# Invalid default value for 'e'
255
 
#--error ER_INVALID_DEFAULT
 
251
#--error 1067
256
252
#alter table bug19145c alter column e set default null;
257
253
 
258
254
# Invalid default value for 's'
259
 
#--error ER_INVALID_DEFAULT
 
255
#--error 1067
260
256
#alter table bug19145c alter column s set default null;
261
257
#alter table bug19145c add column (i int);
262
258