diff options
author | unknown <serg@sergbook.mysql.com> | 2005-08-22 13:20:02 +0400 |
---|---|---|
committer | unknown <serg@sergbook.mysql.com> | 2005-08-22 13:20:02 +0400 |
commit | e2c29343f8bb04598e2689355eb50ef2015e37c9 (patch) | |
tree | b42d4d6b404427d94f224df3644c23cddfa0f84b /sql/sql_table.cc | |
parent | 9df32ec8f8952876f10525d11d152ccbd21bfb67 (diff) | |
download | mariadb-git-e2c29343f8bb04598e2689355eb50ef2015e37c9.tar.gz |
after pull cleanup
configure.in:
don't be too restrictive
mysql-test/r/rpl_drop_db.result:
test case cleanup
mysql-test/t/rpl_drop_db.test:
test case cleanup
Diffstat (limited to 'sql/sql_table.cc')
-rw-r--r-- | sql/sql_table.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 80ac9e007b9..87b864c73fa 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -220,7 +220,6 @@ int mysql_rm_table_part2(THD *thd, TABLE_LIST *tables, bool if_exists, for (table=tables ; table ; table=table->next) { char *db=table->db; - table->was_dropped= 0; mysql_ha_flush(thd, table, MYSQL_HA_CLOSE_FINAL); if (!close_temporary_table(thd, db, table->real_name)) { @@ -281,8 +280,6 @@ int mysql_rm_table_part2(THD *thd, TABLE_LIST *tables, bool if_exists, wrong_tables.append(','); wrong_tables.append(String(table->real_name,system_charset_info)); } - else - table->was_dropped= 1; } thd->tmp_table_used= tmp_table_deleted; error= 0; |