~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/select.h

  • Committer: Andrew Hutchings
  • Date: 2011-01-10 16:11:45 UTC
  • mto: (2069.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2070.
  • Revision ID: andrew@linuxjedi.co.uk-20110110161145-isdc0ncbo2hx2n5c
Fix pandora error message

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
class Select : public Statement
34
34
{
35
35
public:
36
 
  Select(Session *in_session);
 
36
  Select(Session *in_session) :
 
37
    Statement(in_session)
 
38
  {}
37
39
 
38
40
  bool execute();
39
41
};