~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show_engine_status.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 ShowEngineStatus : public Statement
34
34
{
35
35
public:
36
 
  ShowEngineStatus(Session *in_session)
 
36
  ShowEngineStatus(Session *in_session, StorageEngine *show_engine_arg)
37
37
    :
38
 
      Statement(in_session, SQLCOM_SHOW_ENGINE_STATUS)
 
38
      Statement(in_session),
 
39
      show_engine(show_engine_arg)
39
40
  {}
40
41
 
41
42
  bool execute();
 
43
  StorageEngine *show_engine;
42
44
};
43
45
 
44
46
} /* end namespace statement */