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
29
29
bool statement::Update::execute()
31
TableList *first_table= (TableList *) getSession()->lex->select_lex.table_list.first;
32
TableList *all_tables= getSession()->lex->query_tables;
31
TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
32
TableList *all_tables= session->lex->query_tables;
33
33
assert(first_table == all_tables && first_table != 0);
34
Select_Lex *select_lex= &getSession()->lex->select_lex;
35
Select_Lex_Unit *unit= &getSession()->lex->unit;
36
if (update_precheck(getSession(), all_tables))
34
Select_Lex *select_lex= &session->lex->select_lex;
35
Select_Lex_Unit *unit= &session->lex->unit;
36
if (update_precheck(session, all_tables))
40
40
assert(select_lex->offset_limit == 0);
41
41
unit->set_limit(select_lex);
42
bool res= update_query(getSession(),
42
bool res= mysql_update(session,
44
44
select_lex->item_list,
45
getSession()->lex->value_list,
45
session->lex->value_list,
47
47
select_lex->order_list.elements,
48
48
(Order *) select_lex->order_list.first,
49
49
unit->select_limit_cnt,
50
getSession()->lex->duplicates,
51
getSession()->lex->ignore);
50
session->lex->duplicates,
51
session->lex->ignore);