18
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#include <drizzled/server_includes.h>
22
22
#include <drizzled/show.h>
23
23
#include <drizzled/session.h>
24
#include <drizzled/lock.h>
25
24
#include <drizzled/statement/drop_table.h>
26
#include "drizzled/sql_table.h"
38
tables List of tables to delete
39
if_exists If 1, don't give error if one table doesn't exists
42
Will delete all tables that can be deleted and give a compact error
43
messages for tables that could not be deleted.
44
If a table is in use, we will wait for all users to free the table
47
Wait if global_read_lock (FLUSH TABLES WITH READ LOCK) is set, but
48
not if under LOCK TABLES.
51
false OK. In this case ok packet is sent to user
56
static bool rm_table(Session *session, TableList *tables, bool if_exists, bool drop_temporary)
58
bool error, need_start_waiting= false;
60
/* mark for close and remove all cached entries */
62
if (not drop_temporary)
64
if (not (need_start_waiting= not session->wait_if_global_read_lock(false, true)))
69
Acquire table::Cache::singleton().mutex() after wait_if_global_read_lock(). If we would hold
70
table::Cache::singleton().mutex() during wait_if_global_read_lock(), other threads could not
71
close their tables. This would make a pretty deadlock.
73
error= rm_table_part2(session, tables, if_exists, drop_temporary);
75
if (need_start_waiting)
77
session->startWaitingGlobalReadLock();
26
using namespace drizzled;
88
28
bool statement::DropTable::execute()
90
TableList *first_table= (TableList *) getSession()->lex->select_lex.table_list.first;
91
TableList *all_tables= getSession()->lex->query_tables;
30
TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
31
TableList *all_tables= session->lex->query_tables;
92
32
assert(first_table == all_tables && first_table != 0);
94
if (not drop_temporary)
96
if (getSession()->inTransaction())
35
if (! session->endActiveTransaction())
98
my_error(ER_TRANSACTIONAL_DDL_NOT_SUPPORTED, MYF(0));
103
/* DDL and binlog write order protected by table::Cache::singleton().mutex() */
105
return rm_table(getSession(), first_table, drop_if_exists, drop_temporary);
42
/* So that DROP TEMPORARY TABLE gets to binlog at commit/rollback */
43
session->options|= OPTION_KEEP_LOG;
45
/* DDL and binlog write order protected by LOCK_open */
46
bool res= mysql_rm_table(session,
108
} /* namespace drizzled */