From 81cb8ad37ddc02056ca9a626ff0098f07fdcf0ae Mon Sep 17 00:00:00 2001 From: "jimw@mysql.com" <> Date: Wed, 23 Nov 2005 17:05:59 -0800 Subject: Fix handling of maximum value for MAX_ROWS on 64-bit platforms. (Bug #14155) --- mysql-test/t/create.test | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'mysql-test/t/create.test') 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 -- cgit v1.2.1