summaryrefslogtreecommitdiff
path: root/mysql-test/t/bigint.test
diff options
context:
space:
mode:
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;