~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/empty_query.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-10 18:03:39 UTC
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090810180339-c7h4bw0boa9mi8o9
Various updates after great code review from Jay. Thanks Jay!

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
public:
36
36
  EmptyQuery(Session *in_session)
37
37
    :
38
 
      Statement(in_session)
 
38
      Statement(in_session, SQLCOM_EMPTY_QUERY)
39
39
  {}
40
40
 
41
41
  bool execute();
42
 
 
43
 
private:
44
 
  static const enum enum_sql_command type= SQLCOM_EMPTY_QUERY;
45
42
};
46
43
 
47
44
} /* end namespace statement */