~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/replace.cc

  • Committer: Brian Aker
  • Date: 2011-01-12 06:45:23 UTC
  • mto: (2073.1.4 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: brian@tangent.org-20110112064523-rqhptaqbph22qmj1
Remove custom error.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 (session->wait_if_global_read_lock(false, true))
 
42
  {
 
43
    return true;
 
44
  }
 
45
 
 
46
  bool res= insert_query(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();
 
58
  session->startWaitingGlobalReadLock();
59
59
 
60
60
  return res;
61
61
}