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
18
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
#include <drizzled/show.h>
24
#include <drizzled/session.h>
25
#include <drizzled/statement/create_index.h>
26
#include <drizzled/statement/alter_table.h>
27
#include <drizzled/plugin/storage_engine.h>
22
#include "drizzled/show.h"
23
#include "drizzled/session.h"
24
#include "drizzled/statement/create_index.h"
25
#include "drizzled/statement/alter_table.h"
26
#include "drizzled/db.h"
35
CreateIndex::CreateIndex(Session *in_session, const drizzled::ha_build_method method_arg) :
36
CreateTable(in_session)
38
getSession()->getLex()->sql_command= SQLCOM_CREATE_INDEX;
39
alter_info.flags.set(ALTER_ADD_INDEX);
40
alter_info.build_method= method_arg;
41
getSession()->getLex()->col_list.clear();
44
31
bool statement::CreateIndex::execute()
46
TableList *first_table= (TableList *) getSession()->getLex()->select_lex.table_list.first;
47
TableList *all_tables= getSession()->getLex()->query_tables;
49
/* Chicken/Egg... we need to search for the table, to know if the table exists, so we can build a full identifier from it */
50
message::table::shared_ptr original_table_message;
52
identifier::Table identifier(first_table->getSchemaName(), first_table->getTableName());
53
if (not (original_table_message= plugin::StorageEngine::getTableMessage(*getSession(), identifier)))
55
my_error(ER_BAD_TABLE_ERROR, identifier);
33
TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
34
TableList *all_tables= session->lex->query_tables;
61
36
CREATE INDEX and DROP INDEX are implemented by calling ALTER
62
37
TABLE with proper arguments.
69
44
assert(first_table == all_tables && first_table != 0);
70
if (getSession()->inTransaction())
45
if (! session->endActiveTransaction())
72
my_error(ER_TRANSACTIONAL_DDL_NOT_SUPPORTED, MYF(0));
77
if (original_table_message->type() == message::Table::STANDARD )
79
identifier::Table identifier(first_table->getSchemaName(), first_table->getTableName());
80
create_info().default_table_charset= plugin::StorageEngine::getSchemaCollation(identifier);
82
res= alter_table(getSession(),
86
*original_table_message,
94
identifier::Table catch22(first_table->getSchemaName(), first_table->getTableName());
95
Table *table= getSession()->find_temporary_table(catch22);
98
identifier::Table identifier(first_table->getSchemaName(), first_table->getTableName(), table->getMutableShare()->getPath());
99
create_info().default_table_charset= plugin::StorageEngine::getSchemaCollation(identifier);
101
res= alter_table(getSession(),
105
*original_table_message,
106
createTableMessage(),
50
create_info.row_type= ROW_TYPE_NOT_USED;
51
create_info.default_table_charset= plugin::StorageEngine::getSchemaCollation(session->db.c_str());
53
bool res= alter_table(session,
55
first_table->table_name,
116
} /* namespace statement */
117
64
} /* namespace drizzled */