~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table.h

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

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
 
4
 *  Copyright (C) 2009 Sun Microsystems, Inc.
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
#include <drizzled/foreign_key.h>
26
26
 
27
27
namespace drizzled
28
28
{
33
33
 
34
34
class CreateTable : public Statement
35
35
{
 
36
  virtual bool check(const identifier::Table&);
 
37
 
36
38
public:
37
 
  CreateTable(Session *in_session)
38
 
    :
39
 
      Statement(in_session),
40
 
      is_create_table_like(false),
41
 
      is_if_not_exists(false),
42
 
      is_engine_set(false)
 
39
  CreateTable(Session *in_session, Table_ident *ident, bool is_temporary);
 
40
  CreateTable(Session *in_session);
 
41
 
 
42
  virtual bool is_alter() const
43
43
  {
44
 
    memset(&create_info, 0, sizeof(create_info));
 
44
    return false;
45
45
  }
46
46
 
47
47
  bool execute();
48
 
  message::Table create_table_message;
 
48
 
 
49
  virtual bool executeInner(identifier::Table::const_reference);
 
50
 
 
51
public:
49
52
  message::Table &createTableMessage()
50
53
  {
51
 
    return create_table_message;
 
54
    return *getSession()->getLex()->table();
52
55
  };
53
 
  message::Table::Field *current_proto_field;
54
 
  HA_CREATE_INFO create_info;
 
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
 
55
73
  AlterInfo alter_info;
56
74
  KEY_CREATE_INFO key_create_info;
57
75
  message::Table::ForeignKeyConstraint::ForeignKeyMatchOption fk_match_option;
72
90
  /* Poly-use */
73
91
  LEX_STRING comment;
74
92
 
 
93
  bool is_engine_set;
75
94
  bool is_create_table_like;
76
 
  bool is_if_not_exists;
77
 
  bool is_engine_set;
 
95
  bool lex_identified_temp_table;
 
96
  bool link_to_local;
 
97
  TableList *create_table_list;
78
98
 
79
99
  bool validateCreateTableOption();
80
100
};