3
https://bugs.launchpad.net/drizzle/+bug/685803
5
When inserting into a bigint column, vaues > max bigint (64bit signed max)
6
are accepted, but when the values are in quotes an out of range error is
7
hit. I would expect out of range for both instances:
10
create table t6 (a bigint);
11
INSERT INTO `t6` VALUES (9223372036854775807),(18446744073709551615);
13
INSERT INTO `t6` VALUES ('9223372036854775807'),('18446744073709551615');