diff options
author | holyfoot/hf@mysql.com/hfmain.(none) <> | 2007-05-10 16:22:38 +0500 |
---|---|---|
committer | holyfoot/hf@mysql.com/hfmain.(none) <> | 2007-05-10 16:22:38 +0500 |
commit | 70ecc6fe86ab215ad6e981dcaf15bb2ef33f3476 (patch) | |
tree | 67407778ced61d795d70bc0a992903697f5f004a /mysql-test/t/bigint.test | |
parent | 39597b791bc1f792fdb02364b825008fe8c402f8 (diff) | |
download | mariadb-git-70ecc6fe86ab215ad6e981dcaf15bb2ef33f3476.tar.gz |
bigint.test made ps-protocol consistent
Diffstat (limited to 'mysql-test/t/bigint.test')
-rw-r--r-- | mysql-test/t/bigint.test | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mysql-test/t/bigint.test b/mysql-test/t/bigint.test index 47e3df74a7e..c2c6f895545 100644 --- a/mysql-test/t/bigint.test +++ b/mysql-test/t/bigint.test @@ -289,7 +289,9 @@ 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 +create table t1 select -9223372036854775808 bi; +describe t1; +drop table t1; +create table t1 select -9223372036854775809 bi; +describe t1; +drop table t1; |