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>
31
30
namespace statement
34
33
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
36
CreateTable(Session *in_session)
38
Statement(in_session, SQLCOM_CREATE_TABLE)
49
virtual bool executeInner(identifier::Table::const_reference);
52
message::Table &createTableMessage()
54
return *getSession()->lex->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;
74
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;
79
/* The text in a CHANGE COLUMN clause in ALTER TABLE */
82
/* An item representing the DEFAULT clause in CREATE/ALTER TABLE */
85
/* An item representing the ON UPDATE clause in CREATE/ALTER TABLE */
86
Item *on_update_value;
88
enum column_format_type column_format;
94
bool is_create_table_like;
95
bool lex_identified_temp_table;
97
TableList *create_table_list;
99
bool validateCreateTableOption();
102
} /* namespace statement */
44
} /* end namespace statement */
104
} /* namespace drizzled */
46
} /* end namespace drizzled */
106
48
#endif /* DRIZZLED_STATEMENT_CREATE_TABLE_H */