~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show_engine_status.h

Merged in latest plugin-slot-reorg.

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, plugin::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
  plugin::StorageEngine *show_engine;
42
44
};
43
45
 
44
46
} /* end namespace statement */