~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/select.h

  • Committer: Brian Aker
  • Date: 2009-09-24 06:23:51 UTC
  • mfrom: (1128.2.12 merge)
  • Revision ID: brian@gaz-20090924062351-nuf8tv8ftg7oc9ad
Merge of Lex -> Statement refactoring

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(enum enum_sql_command in_comm_type,
37
 
         Session *in_session)
 
36
  Select(Session *in_session)
38
37
    :
39
 
      Statement(in_session, in_comm_type)
 
38
      Statement(in_session)
40
39
  {}
41
40
 
42
41
  bool execute();