~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement.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:
44
44
class Statement
45
45
{
46
46
public:
47
 
  Statement(Session *in_session,
48
 
            enum enum_sql_command in_type)
 
47
  Statement(Session *in_session)
49
48
    : 
50
 
      session(in_session),
51
 
      type(in_type)
 
49
      session(in_session)
52
50
  {}
53
51
 
54
52
  virtual ~Statement() {}
66
64
   * A session handler.
67
65
   */
68
66
  Session *session;
69
 
 
70
 
  enum enum_sql_command type;
71
67
};
72
68
 
73
69
} /* end namespace statement */