~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Jay Pipes
  • Date: 2009-05-16 03:15:51 UTC
  • mto: This revision was merged to the branch mainline in revision 1027.
  • Revision ID: jpipes@serialcoder-20090516031551-75j0370lmcnqekjv
Remove useless autocommit member variable of LEX.  Was always 0. Removed a useless conditional in mysql_execute_command. Document the 'verbose' member variable of LEX

Show diffs side-by-side

added added

removed removed

Lines of Context:
1129
1129
  {
1130
1130
    List<set_var_base> *lex_var_list= &lex->var_list;
1131
1131
 
1132
 
    if (lex->autocommit && ! session->endActiveTransaction())
1133
 
      goto error;
1134
 
 
1135
1132
    if (open_and_lock_tables(session, all_tables))
1136
1133
      goto error;
1137
1134
    if (!(res= sql_set_variables(session, lex_var_list)))