~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/start_transaction.h

  • Committer: Brian Aker
  • Date: 2009-11-04 16:17:49 UTC
  • mto: This revision was merged to the branch mainline in revision 1207.
  • Revision ID: brian@gaz-20091104161749-z39eqefcb0rxc61z
Valgrind fix for startTransaction()

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
class StartTransaction : public Statement
34
34
{
 
35
  /* Options used in START TRANSACTION statement */
 
36
  start_transaction_option_t start_transaction_opt;
 
37
 
35
38
public:
36
 
  StartTransaction(Session *in_session)
 
39
  StartTransaction(Session *in_session, start_transaction_option_t opt= START_TRANS_NO_OPTIONS)
37
40
    :
38
 
      Statement(in_session)
 
41
      Statement(in_session),
 
42
      start_transaction_opt(opt)
39
43
  {}
40
44
 
41
45
  bool execute();