diff options
Diffstat (limited to 'mysql-test/t/raid.test')
-rw-r--r-- | mysql-test/t/raid.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/raid.test b/mysql-test/t/raid.test index 43ad58ab368..52a15ec3040 100644 --- a/mysql-test/t/raid.test +++ b/mysql-test/t/raid.test @@ -11,6 +11,15 @@ create database test_raid; create table test_raid.r1 (i int) raid_type=1; create table test_raid.r2 (i int) raid_type=1 raid_chunks=32; drop database test_raid; + +# +# Bug #3182: Test using more than 257 raid chunks +# +create database test_raid; +create table test_raid.r2 (i int) raid_type=1 raid_chunks=257; +show create table test_raid.r2; +drop database test_raid; + DROP TABLE IF EXISTS t1,t2; CREATE TABLE t1 ( id int unsigned not null auto_increment primary key, |