~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-22 23:26:26 UTC
  • mto: (1039.5.43 replication)
  • mto: This revision was merged to the branch mainline in revision 1130.
  • Revision ID: osullivan.padraig@gmail.com-20090722232626-mu4khq7ho6dqcf7q
Created a simple filtered replicator that can filter by schema name or table
name.

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;