~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/strict.result

  • Committer: lbieber
  • Date: 2010-10-08 01:11:05 UTC
  • mfrom: (1821.1.4 build)
  • Revision ID: lbieber@orisndriz08-20101008011105-1tbwbvz9me9fy7ua
Merge Monty - Fixed the last of the ICC warnings. Turned on warnings=errors
Merge Brian - fixu bug #655558: SELECT 102/(1-1) should error on divide by zero          
Merge Brian - fix bug #654219: information_schema.key_column_usage does not contain information about FKs

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
Warnings:
36
36
Warning 1265    Data truncated for column 'col1' at row 1
37
37
INSERT IGNORE INTO t1 values (1/0);
38
 
Warnings:
39
 
Error   1365    Division by 0
 
38
ERROR 22012: Division by 0
40
39
INSERT IGNORE INTO t1 values (-2147483649);
41
40
Warnings:
42
41
Warning 1264    Out of range value for column 'col1' at row 1
65
64
-2147483648
66
65
2147483647
67
66
2
68
 
NULL
69
67
-2147483648
70
68
2147483647
71
69
-2147483648
105
103
Warnings:
106
104
Warning 1265    Data truncated for column 'col1' at row 1
107
105
INSERT IGNORE INTO t1 values (1/0);
108
 
Warnings:
109
 
Error   1365    Division by 0
 
106
ERROR 22012: Division by 0
110
107
INSERT IGNORE INTO t1 VALUES (-9223372036854775809);
111
108
Warnings:
112
109
Warning 1264    Out of range value for column 'col1' at row 1
133
130
-9223372036854774000
134
131
9223372036854775700
135
132
2
136
 
NULL
137
133
-9223372036854775808
138
134
-9223372036854775808
139
135
-9223372036854775808
197
193
Warnings:
198
194
Warning 1265    Data truncated for column 'col1' at row 1
199
195
INSERT IGNORE INTO t1 values (1/0);
200
 
Warnings:
201
 
Error   1365    Division by 0
 
196
ERROR 22012: Division by 0
202
197
INSERT IGNORE INTO t1 VALUES (1000);
203
198
Warnings:
204
199
Warning 1264    Out of range value for column 'col1' at row 1
236
231
99.99
237
232
99.99
238
233
NULL
239
 
NULL
240
234
DROP TABLE t1;
241
235
CREATE TABLE t1 (col1 CHAR(5), col2 VARCHAR(6));
242
236
INSERT INTO t1 VALUES ('hello', 'hello');