~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/drop_index.cc

  • Committer: Marisa Plumb
  • Date: 2010-12-04 02:38:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1984.
  • Revision ID: marisa.plumb@gmail.com-20101204023829-2khzxh30wxi256db
updates to a few sql docs 

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
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
22
 
 
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>
 
21
#include "config.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"
28
27
 
29
28
namespace drizzled
30
29
{
31
30
 
32
31
bool statement::DropIndex::execute()
33
32
{
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 *) session->lex->select_lex.table_list.first;
 
34
  TableList *all_tables= session->lex->query_tables;
36
35
 
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;
39
38
  {
40
 
    identifier::Table identifier(first_table->getSchemaName(), first_table->getTableName());
41
 
    if (not (original_table_message= plugin::StorageEngine::getTableMessage(*getSession(), identifier)))
 
39
    TableIdentifier identifier(first_table->getSchemaName(), first_table->getTableName());
 
40
    if (plugin::StorageEngine::getTableDefinition(*session, identifier, original_table_message) != EEXIST)
42
41
    {
43
 
      my_error(ER_BAD_TABLE_ERROR, identifier);
 
42
      my_error(ER_BAD_TABLE_ERROR, MYF(0), identifier.getSQLPath().c_str());
44
43
      return true;
45
44
    }
46
45
  }
57
56
  HA_CREATE_INFO create_info;
58
57
 
59
58
  assert(first_table == all_tables && first_table != 0);
60
 
  if (getSession()->inTransaction())
 
59
  if (! session->endActiveTransaction())
61
60
  {
62
 
    my_error(ER_TRANSACTIONAL_DDL_NOT_SUPPORTED, MYF(0));
63
61
    return true;
64
62
  }
65
63
 
 
64
  memset(&create_info, 0, sizeof(create_info));
66
65
  create_info.db_type= 0;
67
66
 
68
67
  bool res;
69
68
  if (original_table_message->type() == message::Table::STANDARD )
70
69
  {
71
 
    identifier::Table identifier(first_table->getSchemaName(), first_table->getTableName());
 
70
    TableIdentifier identifier(first_table->getSchemaName(), first_table->getTableName());
72
71
 
73
72
    create_info.default_table_charset= plugin::StorageEngine::getSchemaCollation(identifier);
74
73
 
75
 
    res= alter_table(getSession(), 
 
74
    res= alter_table(session, 
76
75
                     identifier,
77
76
                     identifier,
78
77
                     &create_info, 
84
83
  }
85
84
  else
86
85
  {
87
 
    identifier::Table catch22(first_table->getSchemaName(), first_table->getTableName());
88
 
    Table *table= getSession()->find_temporary_table(catch22);
 
86
    TableIdentifier catch22(first_table->getSchemaName(), first_table->getTableName());
 
87
    Table *table= session->find_temporary_table(catch22);
89
88
    assert(table);
90
89
    {
91
 
      identifier::Table identifier(first_table->getSchemaName(), first_table->getTableName(), table->getShare()->getPath());
 
90
      TableIdentifier identifier(first_table->getSchemaName(), first_table->getTableName(), table->getShare()->getPath());
92
91
      create_info.default_table_charset= plugin::StorageEngine::getSchemaCollation(identifier);
93
92
 
94
 
      res= alter_table(getSession(), 
 
93
      res= alter_table(session, 
95
94
                       identifier,
96
95
                       identifier,
97
96
                       &create_info,