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
31
31
bool statement::Insert::execute()
33
TableList *first_table= (TableList *) getSession()->lex->select_lex.table_list.first;
34
TableList *all_tables= getSession()->lex->query_tables;
33
TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
34
TableList *all_tables= session->lex->query_tables;
35
35
assert(first_table == all_tables && first_table != 0);
36
36
bool need_start_waiting= false;
38
if (insert_precheck(getSession(), all_tables))
43
if (! (need_start_waiting= ! getSession()->wait_if_global_read_lock(false, true)))
48
DRIZZLE_INSERT_START(getSession()->getQueryString()->c_str());
50
bool res= insert_query(getSession(),
38
if (insert_precheck(session, all_tables))
43
if (! (need_start_waiting= ! wait_if_global_read_lock(session, 0, 1)))
48
DRIZZLE_INSERT_START(session->query.c_str());
50
bool res= mysql_insert(session,
52
getSession()->lex->field_list,
53
getSession()->lex->many_values,
54
getSession()->lex->update_list,
55
getSession()->lex->value_list,
56
getSession()->lex->duplicates,
57
getSession()->lex->ignore);
52
session->lex->field_list,
53
session->lex->many_values,
54
session->lex->update_list,
55
session->lex->value_list,
56
session->lex->duplicates,
57
session->lex->ignore);
59
59
Release the protection against the global read lock and wake
60
60
everyone, who might want to set a global read lock.
62
getSession()->startWaitingGlobalReadLock();
62
start_waiting_global_read_lock(session);