~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Brian Aker
  • Date: 2008-08-21 02:21:23 UTC
  • Revision ID: brian@tangent.org-20080821022123-pemld4axwk9qnhvg
No more dead special flags...

Show diffs side-by-side

added added

removed removed

Lines of Context:
1754
1754
  {
1755
1755
    assert(first_table == all_tables && first_table != 0);
1756
1756
    thd->enable_slow_log= opt_log_slow_admin_statements;
1757
 
    res= (specialflag & (SPECIAL_SAFE_MODE | SPECIAL_NO_NEW_FUNC)) ?
1758
 
      mysql_recreate_table(thd, first_table) :
1759
 
      mysql_optimize_table(thd, first_table, &lex->check_opt);
 
1757
    res= mysql_optimize_table(thd, first_table, &lex->check_opt);
1760
1758
    /* ! we write after unlocking the table */
1761
1759
    if (!res && !lex->no_write_to_binlog)
1762
1760
    {