~stewart/drizzle/docs-improvements-1

« back to all changes in this revision

Viewing changes to tests/suite/regression/r/685803.result

merged with up to date trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
https://bugs.launchpad.net/drizzle/+bug/685803
 
3
When inserting into a bigint column, values > max bigint (64bit signed max)
 
4
are accepted, but when the values are in quotes an out of range error is
 
5
hit. I would expect out of range for both instances:
 
6
*/
 
7
CREATE TABLE t6 (a BIGINT);
 
8
INSERT INTO `t6` VALUES (9223372036854775807),(18446744073709551615);
 
9
ERROR 22003: Out of range value for column 'a' at row 2
 
10
INSERT INTO `t6` VALUES ('9223372036854775807'),('18446744073709551615');
 
11
ERROR 22003: Out of range value for column 'a' at row 2
 
12
SELECT a FROM t6;
 
13
a
 
14
DROP TABLE t6;