~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/strict.result

  • Committer: Barry.Leslie at PrimeBase
  • Date: 2011-01-22 03:22:44 UTC
  • mfrom: (2101 staging)
  • mto: (2228.1.4 build)
  • mto: This revision was merged to the branch mainline in revision 2230.
  • Revision ID: barry.leslie@primebase.com-20110122032244-ukbe3mlj7fs8xph6
Merged with lp:drizzle.

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