~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table.h

  • Committer: Brian Aker
  • Date: 2011-01-22 07:12:16 UTC
  • mfrom: (2096.1.16 alter-table)
  • Revision ID: brian@tangent.org-20110122071216-j0e8bwecb1cqefm9
Merge in work for parser cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  virtual bool check(const identifier::Table&);
37
37
 
38
38
public:
39
 
  CreateTable(Session *in_session) :
40
 
      Statement(in_session),
41
 
      change(NULL),
42
 
      default_value(NULL),
43
 
      on_update_value(NULL),
44
 
      is_engine_set(false),
45
 
      is_create_table_like(false),
46
 
      lex_identified_temp_table(false),
47
 
      link_to_local(false),
48
 
      create_table_list(NULL)
49
 
  {
50
 
  }
 
39
  CreateTable(Session *in_session, Table_ident *ident, bool is_temporary);
 
40
  CreateTable(Session *in_session);
51
41
 
52
42
  virtual bool is_alter() const
53
43
  {