~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/replace.cc

  • Committer: Joseph Daly
  • Date: 2010-10-24 03:19:07 UTC
  • mto: (1856.2.16 transaction_id_innodb)
  • mto: This revision was merged to the branch mainline in revision 1900.
  • Revision ID: skinny.moey@gmail.com-20101024031907-cnkdjmjycx62jsv0
create schema changes

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
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
 
21
#include "config.h"
22
22
#include <drizzled/show.h>
23
23
#include <drizzled/lock.h>
24
24
#include <drizzled/session.h>
29
29
 
30
30
bool statement::Replace::execute()
31
31
{
32
 
  TableList *first_table= (TableList *) getSession()->getLex()->select_lex.table_list.first;
33
 
  TableList *all_tables= getSession()->getLex()->query_tables;
 
32
  TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
 
33
  TableList *all_tables= session->lex->query_tables;
34
34
  assert(first_table == all_tables && first_table != 0);
35
35
 
36
 
  if (insert_precheck(getSession(), all_tables))
37
 
  {
38
 
    return true;
39
 
  }
40
 
 
41
 
  if (getSession()->wait_if_global_read_lock(false, true))
42
 
  {
43
 
    return true;
44
 
  }
45
 
 
46
 
  bool res= insert_query(getSession(), 
 
36
  if (insert_precheck(session, all_tables))
 
37
  {
 
38
    return true;
 
39
  }
 
40
 
 
41
  if (wait_if_global_read_lock(session, false, true))
 
42
  {
 
43
    return true;
 
44
  }
 
45
 
 
46
  bool res= mysql_insert(session, 
47
47
                         all_tables, 
48
 
                         getSession()->getLex()->field_list, 
49
 
                         getSession()->getLex()->many_values,
50
 
                         getSession()->getLex()->update_list, 
51
 
                         getSession()->getLex()->value_list,
52
 
                         getSession()->getLex()->duplicates, 
53
 
                         getSession()->getLex()->ignore);
 
48
                         session->lex->field_list, 
 
49
                         session->lex->many_values,
 
50
                         session->lex->update_list, 
 
51
                         session->lex->value_list,
 
52
                         session->lex->duplicates, 
 
53
                         session->lex->ignore);
54
54
  /*
55
55
     Release the protection against the global read lock and wake
56
56
     everyone, who might want to set a global read lock.
57
57
   */
58
 
  getSession()->startWaitingGlobalReadLock();
59
 
 
 
58
  start_waiting_global_read_lock(session);
60
59
  return res;
61
60
}
62
61