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/plugin/storage_engine.h>
22
#include "drizzled/show.h"
23
#include "drizzled/session.h"
24
#include "drizzled/statement/drop_index.h"
25
#include "drizzled/statement/alter_table.h"
26
#include "drizzled/db.h"
32
31
bool statement::DropIndex::execute()
34
TableList *first_table= (TableList *) getSession()->getLex()->select_lex.table_list.first;
35
TableList *all_tables= getSession()->getLex()->query_tables;
33
TableList *first_table= (TableList *) getSession()->lex->select_lex.table_list.first;
34
TableList *all_tables= getSession()->lex->query_tables;
37
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 */
38
37
message::table::shared_ptr original_table_message;
40
39
identifier::Table identifier(first_table->getSchemaName(), first_table->getTableName());
41
if (not (original_table_message= plugin::StorageEngine::getTableMessage(*getSession(), identifier)))
40
if (plugin::StorageEngine::getTableDefinition(*getSession(), identifier, original_table_message) != EEXIST)
43
42
my_error(ER_BAD_TABLE_ERROR, identifier);