~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table.h

  • Committer: Lee Bieber
  • Date: 2011-01-08 03:39:25 UTC
  • mfrom: (2062.1.2 build)
  • Revision ID: kalebral@gmail.com-20110108033925-koobar399kwrm4ba
Merge Brian - parser clean up
Merge Marisa - latest doc updates, fix sphinx warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  virtual bool check(const TableIdentifier&);
37
37
 
38
38
public:
39
 
  CreateTable(Session *in_session)
40
 
    :
 
39
  CreateTable(Session *in_session) :
41
40
      Statement(in_session),
 
41
      change(NULL),
 
42
      default_value(NULL),
 
43
      on_update_value(NULL),
 
44
      is_engine_set(false),
42
45
      is_create_table_like(false),
43
 
      is_if_not_exists(false),
44
 
      is_engine_set(false)
45
 
  {
46
 
    memset(&create_info, 0, sizeof(create_info));
 
46
      lex_identified_temp_table(false),
 
47
      link_to_local(false),
 
48
      create_table_list(NULL)
 
49
  {
 
50
  }
 
51
 
 
52
  virtual bool is_alter() const
 
53
  {
 
54
    return false;
47
55
  }
48
56
 
49
57
  bool execute();
50
 
  message::Table create_table_message;
 
58
  virtual bool executeInner(TableIdentifier::const_reference);
 
59
 
 
60
public:
51
61
  message::Table &createTableMessage()
52
62
  {
53
 
    return create_table_message;
 
63
    return *session->lex->table();
54
64
  };
55
 
  message::Table::Field *current_proto_field;
56
 
  HA_CREATE_INFO create_info;
 
65
 
 
66
private:
 
67
  HA_CREATE_INFO _create_info;
 
68
 
 
69
public:
 
70
 
 
71
  HA_CREATE_INFO &create_info()
 
72
  {
 
73
    if (createTableMessage().options().auto_increment_value())
 
74
    {
 
75
      _create_info.auto_increment_value= createTableMessage().options().auto_increment_value();
 
76
      _create_info.used_fields|= HA_CREATE_USED_AUTO;
 
77
    }
 
78
 
 
79
    return _create_info;
 
80
  }
 
81
 
57
82
  AlterInfo alter_info;
58
83
  KEY_CREATE_INFO key_create_info;
59
84
  message::Table::ForeignKeyConstraint::ForeignKeyMatchOption fk_match_option;
74
99
  /* Poly-use */
75
100
  LEX_STRING comment;
76
101
 
 
102
  bool is_engine_set;
77
103
  bool is_create_table_like;
78
 
  bool is_if_not_exists;
79
 
  bool is_engine_set;
 
104
  bool lex_identified_temp_table;
 
105
  bool link_to_local;
 
106
  TableList *create_table_list;
80
107
 
81
108
  bool validateCreateTableOption();
82
109
};