~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/checksum.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:
30
30
  TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
31
31
  TableList *all_tables= session->lex->query_tables;
32
32
  assert(first_table == all_tables && first_table != 0);
33
 
  bool res= mysql_checksum_table(session, first_table, &session->lex->check_opt);
 
33
  bool res= mysql_checksum_table(session, first_table, &check_opt);
34
34
  return res;
35
35
}