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/drop_index.h"
26
#include "drizzled/statement/alter_table.h"
27
#include "drizzled/db.h"
28
#include "drizzled/plugin/storage_engine.h"
23
#include <drizzled/show.h>
24
#include <drizzled/session.h>
25
#include <drizzled/statement/drop_index.h>
26
#include <drizzled/statement/alter_table.h>
27
#include <drizzled/plugin/storage_engine.h>
33
31
bool statement::DropIndex::execute()
35
TableList *first_table= (TableList *) getSession()->lex->select_lex.table_list.first;
36
TableList *all_tables= getSession()->lex->query_tables;
33
TableList *first_table= (TableList *) lex().select_lex.table_list.first;
34
TableList *all_tables= lex().query_tables;
38
36
/* Chicken/Egg... we need to search for the table, to know if the table exists, so we can build a full identifier from it */
39
37
message::table::shared_ptr original_table_message;
41
39
identifier::Table identifier(first_table->getSchemaName(), first_table->getTableName());
42
if (plugin::StorageEngine::getTableDefinition(*getSession(), identifier, original_table_message) != EEXIST)
40
if (not (original_table_message= plugin::StorageEngine::getTableMessage(session(), identifier)))
44
42
my_error(ER_BAD_TABLE_ERROR, identifier);
58
56
HA_CREATE_INFO create_info;
60
58
assert(first_table == all_tables && first_table != 0);
61
if (getSession()->inTransaction())
59
if (session().inTransaction())
63
61
my_error(ER_TRANSACTIONAL_DDL_NOT_SUPPORTED, MYF(0));
88
86
identifier::Table catch22(first_table->getSchemaName(), first_table->getTableName());
89
Table *table= getSession()->find_temporary_table(catch22);
87
Table *table= session().find_temporary_table(catch22);
92
90
identifier::Table identifier(first_table->getSchemaName(), first_table->getTableName(), table->getShare()->getPath());
93
91
create_info.default_table_charset= plugin::StorageEngine::getSchemaCollation(identifier);
95
res= alter_table(getSession(),
93
res= alter_table(&session(),