~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/savepoint.h

  • Committer: Monty Taylor
  • Date: 2011-03-09 20:59:40 UTC
  • mfrom: (2226.1.14 build)
  • Revision ID: mordred@inaugust.com-20110309205940-7f5mk6zba2u7bawa
Merged Dave - Filtered Replication docs
Merged Olaf - Refactoring work
Removed archive, blackhole, filesystem_engine, blitzdb, csv and pbxt from
the tree pre-GA as we have no interest in supporting them moving forward.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  Savepoint(Session *in_session, const lex_string_t &ident) :
37
37
    Statement(in_session)
38
38
  {
39
 
    getSession()->getLex()->sql_command= SQLCOM_SAVEPOINT;
40
 
    getSession()->getLex()->ident= ident;
 
39
    set_command(SQLCOM_SAVEPOINT);
 
40
    lex().ident= ident;
41
41
  }
42
42
 
43
43
  bool execute();