diff options
author | Mattias Jonsson <mattias.jonsson@oracle.com> | 2011-04-27 18:42:05 +0200 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@oracle.com> | 2011-04-27 18:42:05 +0200 |
commit | 163807cfcafc13eff607ff8862a59e471bf3011b (patch) | |
tree | 3f2d103bbc0b8c41cf6bfe2ac653b49451ac61d4 /mysql-test/r/partition_myisam.result | |
parent | 3c462481e736f18e9b03eb189e1a73f5d04fd8cb (diff) | |
parent | 401941c25898300462b1adbd9886c8d55e92f7f2 (diff) | |
download | mariadb-git-163807cfcafc13eff607ff8862a59e471bf3011b.tar.gz |
merge
Diffstat (limited to 'mysql-test/r/partition_myisam.result')
-rw-r--r-- | mysql-test/r/partition_myisam.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/partition_myisam.result b/mysql-test/r/partition_myisam.result index 57228c8d9a0..97bcc11495c 100644 --- a/mysql-test/r/partition_myisam.result +++ b/mysql-test/r/partition_myisam.result @@ -239,3 +239,12 @@ a DROP TABLE t1; # Should not be any files left here # End of bug#30102 test. +# Test of post-push fix for bug#11766249/59316 +CREATE TABLE t1 (a INT, b VARCHAR(255), PRIMARY KEY (a)) +ENGINE = MyISAM +PARTITION BY RANGE (a) +(PARTITION p0 VALUES LESS THAN (0) MAX_ROWS=100, +PARTITION p1 VALUES LESS THAN (100) MAX_ROWS=100, +PARTITION pMax VALUES LESS THAN MAXVALUE); +INSERT INTO t1 VALUES (1, "Partition p1, first row"); +DROP TABLE t1; |