~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/analyze.cc

Merged up with latest plugin-slot-reorg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
  TableList *all_tables= session->lex->query_tables;
33
33
  assert(first_table == all_tables && first_table != 0);
34
34
  Select_Lex *select_lex= &session->lex->select_lex;
35
 
  bool res= mysql_analyze_table(session, first_table, &session->lex->check_opt);
 
35
  bool res= mysql_analyze_table(session, first_table, &check_opt);
36
36
  /* ! we write after unlocking the table */
37
37
  write_bin_log(session, true, session->query, session->query_length);
38
38
  select_lex->table_list.first= (unsigned char*) first_table;