~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show_create.h

  • Committer: Brian Aker
  • Date: 2009-11-19 02:33:17 UTC
  • mto: (1222.1.2 staging)
  • mto: This revision was merged to the branch mainline in revision 1224.
  • Revision ID: brian@gaz-20091119023317-lylyqkwhrewid34p
Remove a few more options, from options in HA_CREATE_INFO.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
public:
36
36
  ShowCreate(Session *in_session)
37
37
    :
38
 
      Statement(in_session)
 
38
      Statement(in_session),
 
39
      is_if_not_exists(false)
39
40
  {}
40
41
 
41
42
  bool execute();
 
43
  bool is_if_not_exists;
42
44
};
43
45
 
44
46
} /* end namespace statement */