~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/optimize.h

  • Committer: Diego Medina
  • Date: 2009-10-05 04:05:29 UTC
  • mfrom: (1161 staging)
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: diego.medina@sun.com-20091005040529-5g1qe9gxzslpgefd
resolved small merge issue

Show diffs side-by-side

added added

removed removed

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