~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/strict.result

  • Committer: Patrick Crews
  • Date: 2010-09-14 20:21:03 UTC
  • mto: (1771.1.1 pcrews)
  • mto: This revision was merged to the branch mainline in revision 1772.
  • Revision ID: gleebix@gmail.com-20100914202103-1db2n0bshzafep19
Moved transaction_log tests into updated non-publisher-based tree

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
 
ERROR 22012: Division by 0
 
38
Warnings:
 
39
Error   1365    Division by 0
39
40
INSERT IGNORE INTO t1 values (-2147483649);
40
41
Warnings:
41
42
Warning 1264    Out of range value for column 'col1' at row 1
64
65
-2147483648
65
66
2147483647
66
67
2
 
68
NULL
67
69
-2147483648
68
70
2147483647
69
71
-2147483648
81
83
INSERT INTO t1 VALUES (9223372036854775700.0);
82
84
INSERT INTO t1 (col1) VALUES(-9223372036854775809);
83
85
ERROR 22003: Out of range value for column 'col1' at row 1
84
 
INSERT INTO t1 (col1) VALUES(9223372036854775808);
85
 
ERROR 22003: Out of range value for column 'col1' at row 1
86
86
INSERT INTO t1 (col1) VALUES('-9223372036854775809');
87
87
ERROR 22003: Out of range value for column 'col1' at row 1
88
88
INSERT INTO t1 (col1) VALUES('9223372036854775808');
105
105
Warnings:
106
106
Warning 1265    Data truncated for column 'col1' at row 1
107
107
INSERT IGNORE INTO t1 values (1/0);
108
 
ERROR 22012: Division by 0
 
108
Warnings:
 
109
Error   1365    Division by 0
109
110
INSERT IGNORE INTO t1 VALUES (-9223372036854775809);
110
111
Warnings:
111
112
Warning 1264    Out of range value for column 'col1' at row 1
112
113
INSERT IGNORE INTO t1 VALUES (9223372036854775808);
113
 
Warnings:
114
 
Warning 1264    Out of range value for column 'col1' at row 1
115
114
INSERT IGNORE INTO t1 VALUES ('-9223372036854775809');
116
115
Warnings:
117
116
Warning 1264    Out of range value for column 'col1' at row 1
134
133
-9223372036854774000
135
134
9223372036854775700
136
135
2
 
136
NULL
137
137
-9223372036854775808
138
138
-9223372036854775808
139
139
-9223372036854775808
197
197
Warnings:
198
198
Warning 1265    Data truncated for column 'col1' at row 1
199
199
INSERT IGNORE INTO t1 values (1/0);
200
 
ERROR 22012: Division by 0
 
200
Warnings:
 
201
Error   1365    Division by 0
201
202
INSERT IGNORE INTO t1 VALUES (1000);
202
203
Warnings:
203
204
Warning 1264    Out of range value for column 'col1' at row 1
235
236
99.99
236
237
99.99
237
238
NULL
 
239
NULL
238
240
DROP TABLE t1;
239
241
CREATE TABLE t1 (col1 CHAR(5), col2 VARCHAR(6));
240
242
INSERT INTO t1 VALUES ('hello', 'hello');