1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2009 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; either version 2 of the License, or
9
* (at your option) any later version.
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
#include <drizzled/show.h>
23
#include <drizzled/lock.h>
24
#include <drizzled/session.h>
25
#include <drizzled/statement/rename_table.h>
26
#include "drizzled/sql_table.h"
27
#include "drizzled/pthread_globals.h"
32
bool statement::RenameTable::execute()
34
TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
35
TableList *all_tables= session->lex->query_tables;
36
assert(first_table == all_tables && first_table != 0);
38
for (table= first_table; table; table= table->next_local->next_local)
40
TableList old_list, new_list;
42
we do not need initialize old_list and new_list because we will
43
come table[0] and table->next[0] there
46
new_list= table->next_local[0];
49
if (! session->endActiveTransaction() || renameTables(first_table))
56
bool statement::RenameTable::renameTables(TableList *table_list)
59
TableList *ren_table= NULL;
62
Avoid problems with a rename on a table that we have locked or
63
if the user is trying to to do this in a transcation context
65
if (session->inTransaction())
67
my_message(ER_LOCK_OR_ACTIVE_TRANSACTION, ER(ER_LOCK_OR_ACTIVE_TRANSACTION), MYF(0));
71
if (session->wait_if_global_read_lock(false, true))
75
boost::mutex::scoped_lock scopedLock(table::Cache::singleton().mutex()); /* Rename table lock for exclusive access */
77
if (not session->lock_table_names_exclusively(table_list))
80
ren_table= renameTablesInList(table_list, false);
84
/* Rename didn't succeed; rename back the tables in reverse order */
87
/* Reverse the table list */
88
table_list= reverseTableList(table_list);
90
/* Find the last renamed table */
91
for (table= table_list;
92
table->next_local != ren_table;
93
table= table->next_local->next_local)
96
table= table->next_local->next_local; // Skip error table
98
/* Revert to old names */
99
renameTablesInList(table, true);
103
table_list->unlock_table_names();
107
/* Lets hope this doesn't fail as the result will be messy */
110
write_bin_log(session, *session->getQueryString());
114
session->startWaitingGlobalReadLock();
119
TableList *statement::RenameTable::reverseTableList(TableList *table_list)
121
TableList *prev= NULL;
125
TableList *next= table_list->next_local;
126
table_list->next_local= prev;
133
bool statement::RenameTable::rename(TableList *ren_table,
135
const char *new_table_name,
139
const char *new_alias, *old_alias;
142
old_alias= ren_table->getTableName();
143
new_alias= new_table_name;
146
plugin::StorageEngine *engine= NULL;
147
message::table::shared_ptr table_proto;
149
TableIdentifier old_identifier(ren_table->getSchemaName(), old_alias, message::Table::STANDARD);
151
if (plugin::StorageEngine::getTableDefinition(*session, old_identifier, table_proto) != EEXIST)
153
my_error(ER_NO_SUCH_TABLE, MYF(0), ren_table->getSchemaName(), old_alias);
157
engine= plugin::StorageEngine::findByName(*session, table_proto->engine().name());
159
TableIdentifier new_identifier(new_db, new_alias, message::Table::STANDARD);
160
if (plugin::StorageEngine::doesTableExist(*session, new_identifier))
162
my_error(ER_TABLE_EXISTS_ERROR, MYF(0), new_alias);
163
return 1; // This can't be skipped
166
rc= mysql_rename_table(*session, engine, old_identifier, new_identifier);
167
if (rc && ! skip_error)
173
TableList *statement::RenameTable::renameTablesInList(TableList *table_list,
176
TableList *ren_table, *new_table;
178
for (ren_table= table_list; ren_table; ren_table= new_table->next_local)
180
new_table= ren_table->next_local;
181
if (rename(ren_table, new_table->getSchemaName(), new_table->getTableName(), skip_error))
187
} /* namespace drizzled */