1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2009 Sun Microsystems
4
* Copyright (C) 2009 Sun Microsystems, Inc.
6
6
* This program is free software; you can redistribute it and/or modify
7
7
* it under the terms of the GNU General Public License as published by
18
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#ifndef DRIZZLED_STATEMENT_CREATE_TABLE_H
22
#define DRIZZLED_STATEMENT_CREATE_TABLE_H
24
#include "drizzled/statement.h"
25
#include "drizzled/foreign_key.h"
23
#include <drizzled/alter_info.h>
24
#include <drizzled/statement.h>
25
#include <drizzled/foreign_key.h>
26
#include <drizzled/sql_lex.h>
34
31
class CreateTable : public Statement
36
virtual bool check(const TableIdentifier&);
33
virtual bool check(const identifier::Table&);
39
CreateTable(Session *in_session)
41
Statement(in_session),
42
is_create_table_like(false),
43
is_if_not_exists(false),
36
CreateTable(Session *in_session, Table_ident *ident, bool is_temporary);
37
CreateTable(Session *in_session);
39
virtual bool is_alter() const
46
memset(&create_info, 0, sizeof(create_info));
50
message::Table create_table_message;
46
virtual bool executeInner(const identifier::Table&);
51
49
message::Table &createTableMessage()
53
return create_table_message;
51
return *lex().table();
55
message::Table::Field *current_proto_field;
56
HA_CREATE_INFO create_info;
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;
57
70
AlterInfo alter_info;
58
71
KEY_CREATE_INFO key_create_info;
59
72
message::Table::ForeignKeyConstraint::ForeignKeyMatchOption fk_match_option;
69
82
/* An item representing the ON UPDATE clause in CREATE/ALTER TABLE */
70
83
Item *on_update_value;
72
enum column_format_type column_format;
85
column_format_type column_format;
77
91
bool is_create_table_like;
78
bool is_if_not_exists;
92
bool lex_identified_temp_table;
94
TableList *create_table_list;
81
96
bool validateCreateTableOption();