mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
remove dd_frm_type(), dd_frm_storage_engine(), dd_check_storage_engine_flag()
from everywhere - now RENAME, SHOW FULL TABLES, and TRUNCATE work with discovery. improve error messages in truncate
This commit is contained in:
@ -14,20 +14,20 @@ select * from t1;
|
||||
1 table 1
|
||||
1 table 1
|
||||
rename table t1 to t2;
|
||||
Got one of the listed errors
|
||||
ERROR 42S01: Table 't2' already exists
|
||||
rename table t1 to t1;
|
||||
Got one of the listed errors
|
||||
ERROR 42S01: Table 't1' already exists
|
||||
rename table t3 to t4, t2 to t3, t1 to t2, t4 to t2;
|
||||
Got one of the listed errors
|
||||
ERROR 42S01: Table 't2' already exists
|
||||
show tables like "t_";
|
||||
Tables_in_test (t_)
|
||||
t1
|
||||
t2
|
||||
t3
|
||||
rename table t3 to t1, t2 to t3, t1 to t2, t4 to t1;
|
||||
Got one of the listed errors
|
||||
ERROR 42S01: Table 't1' already exists
|
||||
rename table t3 to t4, t5 to t3, t1 to t2, t4 to t1;
|
||||
Got one of the listed errors
|
||||
ERROR 42S02: Table 'test.t5' doesn't exist
|
||||
select * from t1;
|
||||
1 table 1
|
||||
1 table 1
|
||||
|
Reference in New Issue
Block a user