~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/replace.cc

  • Committer: Monty Taylor
  • Date: 2011-03-08 23:35:47 UTC
  • mfrom: (2224.2.9 statement2)
  • mto: This revision was merged to the branch mainline in revision 2227.
  • Revision ID: mordred@inaugust.com-20110308233547-w2s3tm5svzv339dp
Merged Olaf - Statement refactor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 *) lex().select_lex.table_list.first;
 
33
  TableList *all_tables= lex().query_tables;
34
34
  assert(first_table == all_tables && first_table != 0);
35
35
 
36
36
  if (insert_precheck(getSession(), all_tables))
45
45
 
46
46
  bool res= insert_query(getSession(), 
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
                         lex().field_list, 
 
49
                         lex().many_values,
 
50
                         lex().update_list, 
 
51
                         lex().value_list,
 
52
                         lex().duplicates, 
 
53
                         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.