summaryrefslogtreecommitdiff
path: root/mysql-test/t/bigint.test
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@mysql.com/hfmain.(none)>2007-05-10 16:22:38 +0500
committerunknown <holyfoot/hf@mysql.com/hfmain.(none)>2007-05-10 16:22:38 +0500
commitf1dbb95b1e7321d8f67a88a4a526d84f14b61c6b (patch)
tree67407778ced61d795d70bc0a992903697f5f004a /mysql-test/t/bigint.test
parenteb5b5ad4caae2a62749ecba0252e98d6255ed5f7 (diff)
downloadmariadb-git-f1dbb95b1e7321d8f67a88a4a526d84f14b61c6b.tar.gz
bigint.test made ps-protocol consistent
mysql-test/r/bigint.result: test result fixed mysql-test/t/bigint.test: testcase made ps-protocol consistent
Diffstat (limited to 'mysql-test/t/bigint.test')
-rw-r--r--mysql-test/t/bigint.test10
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;