mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
* don't use 1-8 numbers for open_table_error codes, use an enum.
* print "table doesn't exist in engine" when a table doesn't exist in the engine, instead of "file not found" (if no file was involved) * print a complete filename that cannot be found ('t1.MYI', not 't1') * it's not an error for a DROP if a table doesn't exist in the engine (or some table files cannot be found) - if the DROP succeeded regardless
This commit is contained in:
@ -630,7 +630,7 @@ a
|
||||
DROP TABLE t1,t2,t3;
|
||||
create table t1 (a int) engine=innodb;
|
||||
select * from bug29807;
|
||||
ERROR 42S02: Table 'test.bug29807' doesn't exist
|
||||
ERROR 42S02: Table 'test.bug29807' doesn't exist in engine
|
||||
drop table t1;
|
||||
drop table bug29807;
|
||||
ERROR 42S02: Unknown table 'bug29807'
|
||||
|
Reference in New Issue
Block a user