~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement.h

  • Committer: Brian Aker
  • Date: 2009-09-22 19:14:43 UTC
  • mto: This revision was merged to the branch mainline in revision 1135.
  • Revision ID: brian@gaz-20090922191443-7be09sny97b41at7
Remove legacy enum

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 */