diff options
author | unknown <jimw@mysql.com> | 2005-11-28 10:50:23 -0800 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-11-28 10:50:23 -0800 |
commit | 6c41013ea3b80a5b29c792b479b7c6c2d8ab9763 (patch) | |
tree | 43d9451e988cf21058bcf0693e2f23fe14b9cab4 /mysql-test/t/create.test | |
parent | a796fc484efe6eaaa782610ce563adca8f101c3d (diff) | |
parent | 687b57be8d5e2ed0d69227f6285d4e0b804982dd (diff) | |
download | mariadb-git-6c41013ea3b80a5b29c792b479b7c6c2d8ab9763.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-4.1-14155
into mysql.com:/home/jimw/my/mysql-5.0-clean
mysql-test/t/create.test:
Auto merged
sql/table.cc:
Auto merged
mysql-test/r/create.result:
Resolve conflict
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 |