diff options
author | istruewing@stella.local <> | 2008-03-14 19:30:49 +0100 |
---|---|---|
committer | istruewing@stella.local <> | 2008-03-14 19:30:49 +0100 |
commit | ee9ee8f49d03e74f9ac98d9f30045d0741d4e556 (patch) | |
tree | de394ff69e6896439558c94a82bc72f814d32386 /mysql-test/t/merge.test | |
parent | 397c1783eb341455b500602206ac479d956c5151 (diff) | |
parent | 21e2a000576ac0eb45aabf7a32e22623c6fe1169 (diff) | |
download | mariadb-git-ee9ee8f49d03e74f9ac98d9f30045d0741d4e556.tar.gz |
Merge stella.local:/home2/mydev/mysql-5.0-axmrg
into stella.local:/home2/mydev/mysql-5.1-axmrg
Diffstat (limited to 'mysql-test/t/merge.test')
-rw-r--r-- | mysql-test/t/merge.test | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/t/merge.test b/mysql-test/t/merge.test index e49297dd06c..a4602a3b82a 100644 --- a/mysql-test/t/merge.test +++ b/mysql-test/t/merge.test @@ -599,6 +599,19 @@ SELECT * FROM t3; DROP TABLE t1, t2, t3; +# +# BUG#28248 - mysqldump results with MERGE ... UNION=() cannot be executed +# +CREATE TABLE t1(a INT); +CREATE TABLE m1(a INT) ENGINE=MERGE; +SHOW CREATE TABLE m1; +DROP TABLE m1; +CREATE TABLE m1(a INT) ENGINE=MERGE UNION=(); +SHOW CREATE TABLE m1; +ALTER TABLE m1 UNION=(t1); +ALTER TABLE m1 UNION=(); +SHOW CREATE TABLE m1; +DROP TABLE t1, m1; --echo End of 5.0 tests |