1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge mysql.com:/home/ram/work/b25993/b25993.5.0

into  mysql.com:/home/ram/work/b25993/b25993.5.1
This commit is contained in:
ramil/ram@ramil.myoffice.izhnet.ru
2007-03-26 13:01:46 +05:00
2 changed files with 13 additions and 3 deletions

View File

@ -1455,6 +1455,16 @@ INSERT INTO t1 VALUES (1), (2);
DROP TABLE t1;
#
# Bug #25993: crashe with a merge table and -c
#
CREATE TABLE t2 (a int);
CREATE TABLE t3 (a int);
CREATE TABLE t1 (a int) ENGINE=merge UNION=(t2, t3);
--exec $MYSQL_DUMP --skip-comments -c test
DROP TABLE t1, t2, t3;
--echo #
--echo # End of 5.0 tests
--echo #