diff options
author | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-05-07 11:15:59 +0500 |
---|---|---|
committer | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-05-07 11:15:59 +0500 |
commit | 97841978d4d33cf57db6cc06153da6d560aa70da (patch) | |
tree | d335ccfdb95573c1b6413212c415b0bfb1fbb103 /mysql-test/t/bigint.test | |
parent | e449dcfe66fec7b44f787fa6a4cf3c95c5fe0846 (diff) | |
download | mariadb-git-97841978d4d33cf57db6cc06153da6d560aa70da.tar.gz |
bug #28005 (Partitions can't use -922337...)
one more test added
mysql-test/r/bigint.result:
test result
mysql-test/t/bigint.test:
testcase
Diffstat (limited to 'mysql-test/t/bigint.test')
-rw-r--r-- | mysql-test/t/bigint.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/t/bigint.test b/mysql-test/t/bigint.test index 6c1229db83f..47e3df74a7e 100644 --- a/mysql-test/t/bigint.test +++ b/mysql-test/t/bigint.test @@ -288,3 +288,8 @@ insert into t1 values (10000002383263201056); select c1 mod 50 as result from t1; drop table t1; +# Bug #28005 Partitions: can't use -9223372036854775808 +--enable_metadata +select -9223372036854775808 bi; +select -9223372036854775809 bi; +--disable_metadata |