1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2009 Sun Microsystems, Inc.
4
* Copyright (C) 2009 Sun Microsystems
6
6
* This program is free software; you can redistribute it and/or modify
7
7
* it under the terms of the GNU General Public License as published by
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
24
#include <drizzled/lock.h>
25
#include <drizzled/probes.h>
26
25
#include <drizzled/statement/delete.h>
27
using namespace drizzled;
31
29
bool statement::Delete::execute()
33
DRIZZLE_DELETE_START(getSession()->getQueryString()->c_str());
34
TableList *first_table= (TableList *) getSession()->lex->select_lex.table_list.first;
35
TableList *all_tables= getSession()->lex->query_tables;
36
Select_Lex *select_lex= &getSession()->lex->select_lex;
37
Select_Lex_Unit *unit= &getSession()->lex->unit;
31
TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
32
TableList *all_tables= session->lex->query_tables;
33
Select_Lex *select_lex= &session->lex->select_lex;
34
Select_Lex_Unit *unit= &session->lex->unit;
38
35
assert(first_table == all_tables && first_table != 0);
39
36
assert(select_lex->offset_limit == 0);
40
37
unit->set_limit(select_lex);
41
38
bool need_start_waiting= false;
43
if (! (need_start_waiting= not getSession()->wait_if_global_read_lock(0, 1)))
40
if (! (need_start_waiting= ! wait_if_global_read_lock(session, 0, 1)))
48
bool res= delete_query(getSession(), all_tables, select_lex->where,
45
bool res= mysql_delete(session, all_tables, select_lex->where,
49
46
&select_lex->order_list,
50
47
unit->select_limit_cnt, select_lex->options,
53
50
Release the protection against the global read lock and wake
54
51
everyone, who might want to set a global read lock.
56
getSession()->startWaitingGlobalReadLock();
53
start_waiting_global_read_lock(session);
61
} /* namespace drizzled */