Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
5.5(EOL), 10.0(EOL), 10.1(EOL), 10.2(EOL), 10.3(EOL), 10.4(EOL)
-
None
-
None
Description
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
|