mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Bug #21378 Alter table from X storage engine to NDB could cause data loss: added show tables to ensure tables are gone
This commit is contained in:
@@ -67,6 +67,8 @@ c1
|
||||
1
|
||||
3
|
||||
5
|
||||
show tables;
|
||||
Tables_in_test
|
||||
create table t1(c1 int key)ENGINE=MyISAM;
|
||||
insert into t1 values(100),(344),(533);
|
||||
select * from t1 order by c1;
|
||||
|
@@ -76,6 +76,7 @@ insert into t1 values(1),(3),(5);
|
||||
select * from t1 order by c1;
|
||||
|
||||
connection server2;
|
||||
show tables;
|
||||
create table t1(c1 int key)ENGINE=MyISAM;
|
||||
insert into t1 values(100),(344),(533);
|
||||
select * from t1 order by c1;
|
||||
|
Reference in New Issue
Block a user