~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/analyze.cc

  • Committer: Monty Taylor
  • Date: 2010-12-24 07:15:43 UTC
  • mto: This revision was merged to the branch mainline in revision 2029.
  • Revision ID: mordred@inaugust.com-20101224071543-ab082y5circku6v5
Renamed things prefixed mysql_ or mysqld_

Show diffs side-by-side

added added

removed removed

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