~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table.h

  • Committer: Jay Pipes
  • Date: 2009-09-15 21:01:42 UTC
  • mto: (1126.2.5 merge)
  • mto: This revision was merged to the branch mainline in revision 1128.
  • Revision ID: jpipes@serialcoder-20090915210142-x8mwiqn1q0vzjspp
Moves Alter_info out into its own header and source file, cleans up some related include mess in sql_lex.h, and renames Alter_info to AlterInfo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *
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
23
23
 
24
 
#include "drizzled/statement.h"
25
 
#include "drizzled/foreign_key.h"
 
24
#include <drizzled/statement.h>
 
25
 
 
26
class Session;
26
27
 
27
28
namespace drizzled
28
29
{
29
 
class Session;
30
 
 
31
30
namespace statement
32
31
{
33
32
 
34
33
class CreateTable : public Statement
35
34
{
36
 
  virtual bool check(const identifier::Table&);
37
 
 
38
35
public:
39
 
  CreateTable(Session *in_session, Table_ident *ident, bool is_temporary);
40
 
  CreateTable(Session *in_session);
41
 
 
42
 
  virtual bool is_alter() const
43
 
  {
44
 
    return false;
45
 
  }
 
36
  CreateTable(Session *in_session)
 
37
    :
 
38
      Statement(in_session, SQLCOM_CREATE_TABLE)
 
39
  {}
46
40
 
47
41
  bool execute();
48
 
 
49
 
  virtual bool executeInner(identifier::Table::const_reference);
50
 
 
51
 
public:
52
 
  message::Table &createTableMessage()
53
 
  {
54
 
    return *getSession()->lex->table();
55
 
  };
56
 
 
57
 
private:
58
 
  HA_CREATE_INFO _create_info;
59
 
 
60
 
public:
61
 
 
62
 
  HA_CREATE_INFO &create_info()
63
 
  {
64
 
    if (createTableMessage().options().auto_increment_value())
65
 
    {
66
 
      _create_info.auto_increment_value= createTableMessage().options().auto_increment_value();
67
 
      _create_info.used_fields|= HA_CREATE_USED_AUTO;
68
 
    }
69
 
 
70
 
    return _create_info;
71
 
  }
72
 
 
73
 
  AlterInfo alter_info;
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;
78
 
 
79
 
  /* The text in a CHANGE COLUMN clause in ALTER TABLE */
80
 
  char *change;
81
 
 
82
 
  /* An item representing the DEFAULT clause in CREATE/ALTER TABLE */
83
 
  Item *default_value;
84
 
 
85
 
  /* An item representing the ON UPDATE clause in CREATE/ALTER TABLE */
86
 
  Item *on_update_value;
87
 
 
88
 
  enum column_format_type column_format;
89
 
 
90
 
  /* Poly-use */
91
 
  LEX_STRING comment;
92
 
 
93
 
  bool is_engine_set;
94
 
  bool is_create_table_like;
95
 
  bool lex_identified_temp_table;
96
 
  bool link_to_local;
97
 
  TableList *create_table_list;
98
 
 
99
 
  bool validateCreateTableOption();
100
42
};
101
43
 
102
 
} /* namespace statement */
 
44
} /* end namespace statement */
103
45
 
104
 
} /* namespace drizzled */
 
46
} /* end namespace drizzled */
105
47
 
106
48
#endif /* DRIZZLED_STATEMENT_CREATE_TABLE_H */