~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/update.cc

  • Committer: Olaf van der Spek
  • Date: 2011-07-04 19:11:47 UTC
  • mto: This revision was merged to the branch mainline in revision 2367.
  • Revision ID: olafvdspek@gmail.com-20110704191147-s99ojek811zi1fzj
Remove unused Name_resolution_context::error_reporter

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/session.h>
24
24
#include <drizzled/statement/update.h>
 
25
#include <drizzled/sql_lex.h>
25
26
 
26
 
namespace drizzled
27
 
{
 
27
namespace drizzled {
28
28
 
29
29
bool statement::Update::execute()
30
30
{
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 *) lex().select_lex.table_list.first;
 
32
  TableList *all_tables= 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= &lex().select_lex;
 
35
  Select_Lex_Unit *unit= &lex().unit;
 
36
  if (update_precheck(&session(), all_tables))
37
37
  {
38
38
    return true;
39
39
  }
40
40
  assert(select_lex->offset_limit == 0);
41
41
  unit->set_limit(select_lex);
42
 
  bool res= update_query(getSession(), 
 
42
  bool res= update_query(&session(), 
43
43
                         all_tables,
44
44
                         select_lex->item_list,
45
 
                         getSession()->lex->value_list,
 
45
                         lex().value_list,
46
46
                         select_lex->where,
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
                         lex().duplicates, 
 
51
                         lex().ignore);
52
52
  return res;
53
53
}
54
54