|
CREATE TABLE t (i1 int) ;
|
ALTER TABLE t ENGINE = MERGE UNION ( t1 , t2 ); ## t1, t2 do not exist - the error is expected
|
ALTER TABLE t ENGINE = MERGE UNION ( t1 , t2 ); # but here query returned the error
|
|
drop table t;
|
CREATE TABLE t (i1 int) ;
|
ALTER TABLE t ENGINE = MERGE UNION ( t1 , t2 );
|
ALTER TABLE t ENGINE = MERGE UNION ( t1 , t2 );
|
main.1_my 'innodb' [ fail ]
|
|
CURRENT_TEST: main.1_my
|
mysqltest: At line 26: query 'ALTER TABLE t ENGINE = MERGE UNION ( t1 , t2 )' failed: 1168: Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
|