~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/checksum.cc

  • Committer: Diego Medina
  • Date: 2009-10-05 04:05:29 UTC
  • mfrom: (1161 staging)
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: diego.medina@sun.com-20091005040529-5g1qe9gxzslpgefd
resolved small merge issue

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
}