~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/set_option.h

Merged in latest plugin-slot-reorg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
public:
36
36
  SetOption(Session *in_session)
37
37
    :
38
 
      Statement(in_session, SQLCOM_SET_OPTION)
39
 
  {}
 
38
      Statement(in_session)
 
39
  {
 
40
    one_shot_set= false;
 
41
  }
40
42
 
41
43
  bool execute();
 
44
  bool one_shot_set;
42
45
};
43
46
 
44
47
} /* end namespace statement */