~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/strict.result

merged with up to date trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
INSERT INTO t1 VALUES (9223372036854775700.0);
82
82
INSERT INTO t1 (col1) VALUES(-9223372036854775809);
83
83
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
84
86
INSERT INTO t1 (col1) VALUES('-9223372036854775809');
85
87
ERROR 22003: Out of range value for column 'col1' at row 1
86
88
INSERT INTO t1 (col1) VALUES('9223372036854775808');
108
110
Warnings:
109
111
Warning 1264    Out of range value for column 'col1' at row 1
110
112
INSERT IGNORE INTO t1 VALUES (9223372036854775808);
 
113
Warnings:
 
114
Warning 1264    Out of range value for column 'col1' at row 1
111
115
INSERT IGNORE INTO t1 VALUES ('-9223372036854775809');
112
116
Warnings:
113
117
Warning 1264    Out of range value for column 'col1' at row 1