~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/check.h

Merged up with latest plugin-slot-reorg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
public:
36
36
  Check(Session *in_session)
37
37
    :
38
 
      Statement(in_session, SQLCOM_CHECK)
39
 
  {}
 
38
      Statement(in_session)
 
39
  {
 
40
    check_opt.init();
 
41
  }
40
42
 
41
43
  bool execute();
 
44
 
 
45
  HA_CHECK_OPT check_opt;                       // check/repair options
42
46
};
43
47
 
44
48
} /* end namespace statement */