1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2009 Sun Microsystems, Inc.
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; either version 2 of the License, or
9
* (at your option) any later version.
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
#include <drizzled/alter_info.h>
24
#include <drizzled/statement.h>
25
#include <drizzled/foreign_key.h>
26
#include <drizzled/sql_lex.h>
31
class CreateTable : public Statement
33
virtual bool check(const identifier::Table&);
36
CreateTable(Session *in_session, Table_ident *ident, bool is_temporary);
37
CreateTable(Session *in_session);
39
virtual bool is_alter() const
46
virtual bool executeInner(const identifier::Table&);
49
message::Table &createTableMessage()
51
return *lex().table();
55
HA_CREATE_INFO _create_info;
59
HA_CREATE_INFO &create_info()
61
if (createTableMessage().options().auto_increment_value())
63
_create_info.auto_increment_value= createTableMessage().options().auto_increment_value();
64
_create_info.used_fields|= HA_CREATE_USED_AUTO;
71
KEY_CREATE_INFO key_create_info;
72
message::Table::ForeignKeyConstraint::ForeignKeyMatchOption fk_match_option;
73
message::Table::ForeignKeyConstraint::ForeignKeyOption fk_update_opt;
74
message::Table::ForeignKeyConstraint::ForeignKeyOption fk_delete_opt;
76
/* The text in a CHANGE COLUMN clause in ALTER TABLE */
79
/* An item representing the DEFAULT clause in CREATE/ALTER TABLE */
82
/* An item representing the ON UPDATE clause in CREATE/ALTER TABLE */
83
Item *on_update_value;
85
column_format_type column_format;
91
bool is_create_table_like;
92
bool lex_identified_temp_table;
94
TableList *create_table_list;
96
bool validateCreateTableOption();
99
} /* namespace statement */
101
} /* namespace drizzled */