diff options
author | jimw@mysql.com <> | 2005-11-28 10:50:23 -0800 |
---|---|---|
committer | jimw@mysql.com <> | 2005-11-28 10:50:23 -0800 |
commit | 99297e44d4defa9652b6155089749db814dde89b (patch) | |
tree | 43d9451e988cf21058bcf0693e2f23fe14b9cab4 /mysql-test/t/create.test | |
parent | ba8d1f134ad70e715af9ea3da4a98a62de2d5d9b (diff) | |
parent | 81cb8ad37ddc02056ca9a626ff0098f07fdcf0ae (diff) | |
download | mariadb-git-99297e44d4defa9652b6155089749db814dde89b.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-4.1-14155
into mysql.com:/home/jimw/my/mysql-5.0-clean
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 470a7bcbb59..6f3bc67cb30 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -631,3 +631,17 @@ show create table t2; drop table t1, t2; # 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 |