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, Inc.
4
* Copyright (C) 2009 Sun Microsystems
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
21
21
#ifndef DRIZZLED_STATEMENT_CREATE_TABLE_H
22
22
#define DRIZZLED_STATEMENT_CREATE_TABLE_H
24
#include <drizzled/statement.h>
25
#include <drizzled/foreign_key.h>
24
#include "drizzled/statement.h"
25
#include "drizzled/foreign_key.h"
31
31
namespace statement
34
34
class CreateTable : public Statement
36
virtual bool check(const identifier::Table&);
39
CreateTable(Session *in_session, Table_ident *ident, bool is_temporary);
40
CreateTable(Session *in_session);
42
virtual bool is_alter() const
37
CreateTable(Session *in_session)
39
Statement(in_session),
40
is_create_table_like(false),
41
is_if_not_exists(false),
44
memset(&create_info, 0, sizeof(create_info));
49
virtual bool executeInner(identifier::Table::const_reference);
52
message::Table &createTableMessage()
54
return *getSession()->getLex()->table();
58
HA_CREATE_INFO _create_info;
62
HA_CREATE_INFO &create_info()
64
if (createTableMessage().options().auto_increment_value())
66
_create_info.auto_increment_value= createTableMessage().options().auto_increment_value();
67
_create_info.used_fields|= HA_CREATE_USED_AUTO;
48
drizzled::message::Table create_table_proto;
49
drizzled::message::Table::Field *current_proto_field;
50
HA_CREATE_INFO create_info;
73
51
AlterInfo alter_info;
74
52
KEY_CREATE_INFO key_create_info;
75
message::Table::ForeignKeyConstraint::ForeignKeyMatchOption fk_match_option;
76
message::Table::ForeignKeyConstraint::ForeignKeyOption fk_update_opt;
77
message::Table::ForeignKeyConstraint::ForeignKeyOption fk_delete_opt;
53
enum Foreign_key::fk_match_opt fk_match_option;
54
enum Foreign_key::fk_option fk_update_opt;
55
enum Foreign_key::fk_option fk_delete_opt;
79
57
/* The text in a CHANGE COLUMN clause in ALTER TABLE */
91
69
LEX_STRING comment;
71
bool is_create_table_like;
72
bool is_if_not_exists;
93
73
bool is_engine_set;
94
bool is_create_table_like;
95
bool lex_identified_temp_table;
97
TableList *create_table_list;
99
bool validateCreateTableOption();
102
} /* namespace statement */
76
} /* end namespace statement */
104
} /* namespace drizzled */
78
} /* end namespace drizzled */
106
80
#endif /* DRIZZLED_STATEMENT_CREATE_TABLE_H */