1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
*
* Copyright (C) 2009 Sun Microsystems, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef DRIZZLED_STATEMENT_CREATE_TABLE_H
#define DRIZZLED_STATEMENT_CREATE_TABLE_H
#include "drizzled/statement.h"
#include "drizzled/foreign_key.h"
namespace drizzled
{
class Session;
namespace statement
{
class CreateTable : public Statement
{
virtual bool check(const identifier::Table&);
public:
CreateTable(Session *in_session, Table_ident *ident, bool is_temporary);
CreateTable(Session *in_session);
virtual bool is_alter() const
{
return false;
}
bool execute();
virtual bool executeInner(identifier::Table::const_reference);
public:
message::Table &createTableMessage()
{
return *getSession()->lex->table();
};
private:
HA_CREATE_INFO _create_info;
public:
HA_CREATE_INFO &create_info()
{
if (createTableMessage().options().auto_increment_value())
{
_create_info.auto_increment_value= createTableMessage().options().auto_increment_value();
_create_info.used_fields|= HA_CREATE_USED_AUTO;
}
return _create_info;
}
AlterInfo alter_info;
KEY_CREATE_INFO key_create_info;
message::Table::ForeignKeyConstraint::ForeignKeyMatchOption fk_match_option;
message::Table::ForeignKeyConstraint::ForeignKeyOption fk_update_opt;
message::Table::ForeignKeyConstraint::ForeignKeyOption fk_delete_opt;
/* The text in a CHANGE COLUMN clause in ALTER TABLE */
char *change;
/* An item representing the DEFAULT clause in CREATE/ALTER TABLE */
Item *default_value;
/* An item representing the ON UPDATE clause in CREATE/ALTER TABLE */
Item *on_update_value;
enum column_format_type column_format;
/* Poly-use */
LEX_STRING comment;
bool is_engine_set;
bool is_create_table_like;
bool lex_identified_temp_table;
bool link_to_local;
TableList *create_table_list;
bool validateCreateTableOption();
};
} /* namespace statement */
} /* namespace drizzled */
#endif /* DRIZZLED_STATEMENT_CREATE_TABLE_H */
|