1
/* Copyright (C) 2000-2006 MySQL AB
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
17
Atomic rename of table; RENAME TABLE t1 to t2, tmp to t1 [,...]
19
#include <drizzled/server_includes.h>
20
#include <drizzled/error.h>
21
#include <drizzled/table_list.h>
22
#include <drizzled/session.h>
23
#include <drizzled/lock.h>
24
#include "drizzled/rename.h"
26
static TableList *rename_tables(Session *session, TableList *table_list,
29
static TableList *reverse_table_list(TableList *table_list);
32
Every second entry in the table_list is the original name and every
33
second entry is the new name.
35
bool drizzle_rename_tables(Session *session, TableList *table_list)
38
TableList *ren_table= NULL;
41
Avoid problems with a rename on a table that we have locked or
42
if the user is trying to to do this in a transcation context
44
if (session->inTransaction())
46
my_message(ER_LOCK_OR_ACTIVE_TRANSACTION, ER(ER_LOCK_OR_ACTIVE_TRANSACTION), MYF(0));
50
if (wait_if_global_read_lock(session,0,1))
53
pthread_mutex_lock(&LOCK_open); /* Rename table lock for exclusive access */
54
if (lock_table_names_exclusively(session, table_list))
56
pthread_mutex_unlock(&LOCK_open);
61
if ((ren_table=rename_tables(session,table_list,0)))
63
/* Rename didn't succeed; rename back the tables in reverse order */
66
/* Reverse the table list */
67
table_list= reverse_table_list(table_list);
69
/* Find the last renamed table */
70
for (table= table_list;
71
table->next_local != ren_table ;
72
table= table->next_local->next_local) ;
73
table= table->next_local->next_local; // Skip error table
74
/* Revert to old names */
75
rename_tables(session, table, 1);
77
/* Revert the table list (for prepared statements) */
78
table_list= reverse_table_list(table_list);
83
An exclusive lock on table names is satisfactory to ensure
84
no other thread accesses this table.
85
We still should unlock LOCK_open as early as possible, to provide
86
higher concurrency - query_cache_invalidate can take minutes to
89
pthread_mutex_unlock(&LOCK_open);
91
/* Lets hope this doesn't fail as the result will be messy */
94
write_bin_log(session, true, session->query, session->query_length);
98
pthread_mutex_lock(&LOCK_open); /* unlock all tables held */
99
unlock_table_names(table_list, NULL);
100
pthread_mutex_unlock(&LOCK_open);
103
start_waiting_global_read_lock(session);
114
table_list pointer to table _list
117
pointer to new (reversed) list
119
static TableList *reverse_table_list(TableList *table_list)
121
TableList *prev= NULL;
125
TableList *next= table_list->next_local;
126
table_list->next_local= prev;
135
Rename a single table or a view
139
session Thread handle
140
ren_table A table/view to be renamed
141
new_db The database to which the table to be moved to
142
new_table_name The new table/view name
143
skip_error Whether to skip error
146
Rename a single table or a view.
154
do_rename(Session *session, TableList *ren_table, const char *new_db, const char *new_table_name, bool skip_error)
157
const char *new_alias, *old_alias;
160
old_alias= ren_table->table_name;
161
new_alias= new_table_name;
164
StorageEngine *engine= NULL;
165
drizzled::message::Table table_proto;
166
char path[FN_REFLEN];
169
length= build_table_filename(path, sizeof(path),
170
ren_table->db, old_alias, false);
172
if (StorageEngine::getTableProto(path, &table_proto)!= EEXIST)
174
my_error(ER_NO_SUCH_TABLE, MYF(0), ren_table->db, old_alias);
178
engine= ha_resolve_by_name(session, table_proto.engine().name());
180
length= build_table_filename(path, sizeof(path),
181
new_db, new_alias, false);
183
if (StorageEngine::getTableProto(path, NULL)!=ENOENT)
185
my_error(ER_TABLE_EXISTS_ERROR, MYF(0), new_alias);
186
return(1); // This can't be skipped
189
rc= mysql_rename_table(engine,
190
ren_table->db, old_alias,
191
new_db, new_alias, 0);
192
if (rc && !skip_error)
199
Rename all tables in list; Return pointer to wrong entry if something goes
200
wrong. Note that the table_list may be empty!
204
Rename tables/views in the list
208
session Thread handle
209
table_list List of tables to rename
210
skip_error Whether to skip errors
213
Take a table/view name from and odd list element and rename it to a
214
the name taken from list element+1. Note that the table_list may be
223
rename_tables(Session *session, TableList *table_list, bool skip_error)
225
TableList *ren_table, *new_table;
227
for (ren_table= table_list; ren_table; ren_table= new_table->next_local)
229
new_table= ren_table->next_local;
230
if (do_rename(session, ren_table, new_table->db, new_table->table_name, skip_error))