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
|
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
*
* Copyright (C) 2009 Sun Microsystems
*
* 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
{
public:
CreateTable(Session *in_session)
:
Statement(in_session),
is_create_table_like(false),
is_if_not_exists(false),
is_engine_set(false)
{
memset(&create_info, 0, sizeof(create_info));
}
bool execute();
message::Table create_table_proto;
message::Table::Field *current_proto_field;
HA_CREATE_INFO create_info;
AlterInfo alter_info;
KEY_CREATE_INFO key_create_info;
enum Foreign_key::fk_match_opt fk_match_option;
enum Foreign_key::fk_option fk_update_opt;
enum Foreign_key::fk_option 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_create_table_like;
bool is_if_not_exists;
bool is_engine_set;
};
} /* namespace statement */
} /* namespace drizzled */
#endif /* DRIZZLED_STATEMENT_CREATE_TABLE_H */
|