diff options
author | unknown <monty@mysql.com> | 2005-02-21 20:41:48 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-02-21 20:41:48 +0200 |
commit | 0834c07950fa11cf2efd54251a3e025cb596ee09 (patch) | |
tree | 19da946b683ea88a6897b8cf0ec4535e791b43f1 /mysql-test/r/ndb_autodiscover.result | |
parent | 39e9f2566fa9e1eb6022a1a2cd9b316fb9772348 (diff) | |
download | mariadb-git-0834c07950fa11cf2efd54251a3e025cb596ee09.tar.gz |
Generate warning in ha_delete_table() if files is missing in handler
mysql-test/r/myisam.result:
Test of DROP TABLE when .MYI or .MYD is missing
mysql-test/r/ndb_autodiscover.result:
Update test results
mysql-test/r/rpl_EE_error.result:
Change test to conform with new handling of drop table when handler file is missing
mysql-test/t/myisam.test:
Test of DROP TABLE when .MYI or .MYD is missing
mysql-test/t/rpl_EE_error.test:
Change test to conform with new handling of drop table when handler file is missing
sql/handler.cc:
Generate a warning in ha_delete_table() if we get an error from 'delete_table()'
sql/handler.h:
More parameters to ha_delete_table() so that we can generate better error messages
sql/sql_table.cc:
Generate warning in ha_delete_table()
Diffstat (limited to 'mysql-test/r/ndb_autodiscover.result')
-rw-r--r-- | mysql-test/r/ndb_autodiscover.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/ndb_autodiscover.result b/mysql-test/r/ndb_autodiscover.result index afea2fa3e0a..38b34579f03 100644 --- a/mysql-test/r/ndb_autodiscover.result +++ b/mysql-test/r/ndb_autodiscover.result @@ -180,7 +180,7 @@ select * from t4; ERROR 42S02: Table 'test.t4' doesn't exist drop table if exists t4; Warnings: -Note 1051 Unknown table 't4' +Error 155 Table 'test.t4' doesn't exist drop table t5; ERROR 42S02: Unknown table 't5' drop table if exists t5; |