diff options
Diffstat (limited to 'mysql-test/t/create.test')
-rw-r--r-- | mysql-test/t/create.test | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test index 73184853d1a..50a2e1a3cba 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -527,3 +527,17 @@ create table if not exists t1 (a int); drop table t1; # End of 4.1 tests + +# +# Bug #14155: Maximum value of MAX_ROWS handled incorrectly on 64-bit +# platforms +# +create table t1 (i int) engine=myisam max_rows=100000000000; +show create table t1; +alter table t1 max_rows=100; +show create table t1; +alter table t1 max_rows=100000000000; +show create table t1; +drop table t1; + +# End of 5.0 tests |