~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/delete.cc

  • Committer: lbieber
  • Date: 2010-10-06 16:34:16 UTC
  • mfrom: (1816.1.3 build)
  • Revision ID: lbieber@orisndriz08-20101006163416-ea0sl59qgpglk21y
Merge Monty - Change the requirement from either libinnodb to libhaildb. Also, tied it to version 2.2
Merge Andrew - fix bug 650935: remove --compress from all clients
Merge Andrew - fix bug 653471: Add -A to drizzle client
Merge Travis - 621861 = To change C structs to C++ classes in Drizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *
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
30
30
 
31
31
bool statement::Delete::execute()
32
32
{
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;
 
33
  DRIZZLE_DELETE_START(session->query.c_str());
 
34
  TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
 
35
  TableList *all_tables= session->lex->query_tables;
 
36
  Select_Lex *select_lex= &session->lex->select_lex;
 
37
  Select_Lex_Unit *unit= &session->lex->unit;
38
38
  assert(first_table == all_tables && first_table != 0);
39
39
  assert(select_lex->offset_limit == 0);
40
40
  unit->set_limit(select_lex);
41
41
  bool need_start_waiting= false;
42
42
 
43
 
  if (! (need_start_waiting= not getSession()->wait_if_global_read_lock(0, 1)))
 
43
  if (! (need_start_waiting= ! wait_if_global_read_lock(session, 0, 1)))
44
44
  {
45
45
    return true;
46
46
  }
47
47
 
48
 
  bool res= delete_query(getSession(), all_tables, select_lex->where,
 
48
  bool res= mysql_delete(session, all_tables, select_lex->where,
49
49
                         &select_lex->order_list,
50
50
                         unit->select_limit_cnt, select_lex->options,
51
51
                         false);
53
53
    Release the protection against the global read lock and wake
54
54
    everyone, who might want to set a global read lock.
55
55
  */
56
 
  getSession()->startWaitingGlobalReadLock();
57
 
 
 
56
  start_waiting_global_read_lock(session);
58
57
  return res;
59
58
}
60
59