~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table.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
  CreateTable(Session *in_session)
37
37
    :
38
 
      Statement(in_session)
 
38
      Statement(in_session),
 
39
      is_create_table_like(false),
 
40
      is_if_not_exists(false)
39
41
  {
40
42
    memset(&create_info, 0, sizeof(create_info));
41
43
  }
63
65
 
64
66
  /* Poly-use */
65
67
  LEX_STRING comment;
 
68
 
 
69
  bool is_create_table_like;
 
70
  bool is_if_not_exists;
66
71
};
67
72
 
68
73
} /* end namespace statement */