~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/check.cc

  • Committer: Brian Aker
  • Date: 2009-09-24 06:23:51 UTC
  • mfrom: (1128.2.12 merge)
  • Revision ID: brian@gaz-20090924062351-nuf8tv8ftg7oc9ad
Merge of Lex -> Statement refactoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
  TableList *all_tables= session->lex->query_tables;
32
32
  assert(first_table == all_tables && first_table != 0);
33
33
  Select_Lex *select_lex= &session->lex->select_lex;
34
 
  bool res= mysql_check_table(session, first_table, &session->lex->check_opt);
 
34
  bool res= mysql_check_table(session, first_table, &check_opt);
35
35
  select_lex->table_list.first= (unsigned char*) first_table;
36
36
  session->lex->query_tables=all_tables;
37
37
  return res;