~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rename.cc

  • Committer: Jay Pipes
  • Date: 2009-02-21 16:00:06 UTC
  • mto: (907.1.1 trunk-with-temporal)
  • mto: This revision was merged to the branch mainline in revision 908.
  • Revision ID: jpipes@serialcoder-20090221160006-vnk3wt4qbcz62eru
Removes the TIME column type and related time functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2000-2006 MySQL AB
 
2
 
 
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.
 
6
 
 
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.
 
11
 
 
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 */
 
15
 
 
16
/*
 
17
  Atomic rename of table;  RENAME TABLE t1 to t2, tmp to t1 [,...]
 
18
*/
 
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
 
 
25
static TableList *rename_tables(Session *session, TableList *table_list,
 
26
                                bool skip_error);
 
27
 
 
28
static TableList *reverse_table_list(TableList *table_list);
 
29
 
 
30
/*
 
31
  Every second entry in the table_list is the original name and every
 
32
  second entry is the new name.
 
33
*/
 
34
 
 
35
bool drizzle_rename_tables(Session *session, TableList *table_list, bool silent)
 
36
{
 
37
  bool error= 1;
 
38
  TableList *ren_table= 0;
 
39
 
 
40
  /*
 
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
 
43
  */
 
44
  if (session->locked_tables || session->active_transaction())
 
45
  {
 
46
    my_message(ER_LOCK_OR_ACTIVE_TRANSACTION,
 
47
               ER(ER_LOCK_OR_ACTIVE_TRANSACTION), MYF(0));
 
48
    return(1);
 
49
  }
 
50
 
 
51
  mysql_ha_rm_tables(session, table_list, false);
 
52
 
 
53
  if (wait_if_global_read_lock(session,0,1))
 
54
    return(1);
 
55
 
 
56
  pthread_mutex_lock(&LOCK_open);
 
57
  if (lock_table_names_exclusively(session, table_list))
 
58
  {
 
59
    pthread_mutex_unlock(&LOCK_open);
 
60
    goto err;
 
61
  }
 
62
 
 
63
  error=0;
 
64
  if ((ren_table=rename_tables(session,table_list,0)))
 
65
  {
 
66
    /* Rename didn't succeed;  rename back the tables in reverse order */
 
67
    TableList *table;
 
68
 
 
69
    /* Reverse the table list */
 
70
    table_list= reverse_table_list(table_list);
 
71
 
 
72
    /* Find the last renamed table */
 
73
    for (table= table_list;
 
74
         table->next_local != ren_table ;
 
75
         table= table->next_local->next_local) ;
 
76
    table= table->next_local->next_local;               // Skip error table
 
77
    /* Revert to old names */
 
78
    rename_tables(session, table, 1);
 
79
 
 
80
    /* Revert the table list (for prepared statements) */
 
81
    table_list= reverse_table_list(table_list);
 
82
 
 
83
    error= 1;
 
84
  }
 
85
  /*
 
86
    An exclusive lock on table names is satisfactory to ensure
 
87
    no other thread accesses this table.
 
88
    We still should unlock LOCK_open as early as possible, to provide
 
89
    higher concurrency - query_cache_invalidate can take minutes to
 
90
    complete.
 
91
  */
 
92
  pthread_mutex_unlock(&LOCK_open);
 
93
 
 
94
  /* Lets hope this doesn't fail as the result will be messy */
 
95
  if (!silent && !error)
 
96
  {
 
97
    write_bin_log(session, true, session->query, session->query_length);
 
98
    session->my_ok();
 
99
  }
 
100
 
 
101
  pthread_mutex_lock(&LOCK_open);
 
102
  unlock_table_names(session, table_list, (TableList*) 0);
 
103
  pthread_mutex_unlock(&LOCK_open);
 
104
 
 
105
err:
 
106
  start_waiting_global_read_lock(session);
 
107
  return(error);
 
108
}
 
109
 
 
110
 
 
111
/*
 
112
  reverse table list
 
113
 
 
114
  SYNOPSIS
 
115
    reverse_table_list()
 
116
    table_list pointer to table _list
 
117
 
 
118
  RETURN
 
119
    pointer to new (reversed) list
 
120
*/
 
121
static TableList *reverse_table_list(TableList *table_list)
 
122
{
 
123
  TableList *prev= 0;
 
124
 
 
125
  while (table_list)
 
126
  {
 
127
    TableList *next= table_list->next_local;
 
128
    table_list->next_local= prev;
 
129
    prev= table_list;
 
130
    table_list= next;
 
131
  }
 
132
  return (prev);
 
133
}
 
134
 
 
135
 
 
136
/*
 
137
  Rename a single table or a view
 
138
 
 
139
  SYNPOSIS
 
140
    do_rename()
 
141
      session               Thread handle
 
142
      ren_table         A table/view to be renamed
 
143
      new_db            The database to which the table to be moved to
 
144
      new_table_name    The new table/view name
 
145
      new_table_alias   The new table/view alias
 
146
      skip_error        Whether to skip error
 
147
 
 
148
  DESCRIPTION
 
149
    Rename a single table or a view.
 
150
 
 
151
  RETURN
 
152
    false     Ok
 
153
    true      rename failed
 
154
*/
 
155
 
 
156
bool
 
157
do_rename(Session *session, TableList *ren_table, char *new_db, char *new_table_name,
 
158
          char *new_table_alias, bool skip_error)
 
159
{
 
160
  int rc= 1;
 
161
  const char *new_alias, *old_alias;
 
162
 
 
163
  if (lower_case_table_names == 2)
 
164
  {
 
165
    old_alias= ren_table->alias;
 
166
    new_alias= new_table_alias;
 
167
  }
 
168
  else
 
169
  {
 
170
    old_alias= ren_table->table_name;
 
171
    new_alias= new_table_name;
 
172
  }
 
173
 
 
174
  handlerton *hton= NULL;
 
175
 
 
176
  if(ha_table_exists_in_engine(session, ren_table->db, old_alias, &hton)
 
177
     != HA_ERR_TABLE_EXIST)
 
178
  {
 
179
    my_error(ER_NO_SUCH_TABLE, MYF(0), ren_table->db, old_alias);
 
180
    return(1);
 
181
  }
 
182
 
 
183
  if (ha_table_exists_in_engine(session, new_db, new_alias)
 
184
      !=HA_ERR_NO_SUCH_TABLE)
 
185
  {
 
186
    my_error(ER_TABLE_EXISTS_ERROR, MYF(0), new_alias);
 
187
    return(1);                  // This can't be skipped
 
188
  }
 
189
 
 
190
  rc= mysql_rename_table(hton,
 
191
                         ren_table->db, old_alias,
 
192
                         new_db, new_alias, 0);
 
193
  if (rc && !skip_error)
 
194
    return(1);
 
195
 
 
196
  return(0);
 
197
 
 
198
}
 
199
/*
 
200
  Rename all tables in list; Return pointer to wrong entry if something goes
 
201
  wrong.  Note that the table_list may be empty!
 
202
*/
 
203
 
 
204
/*
 
205
  Rename tables/views in the list
 
206
 
 
207
  SYNPOSIS
 
208
    rename_tables()
 
209
      session               Thread handle
 
210
      table_list        List of tables to rename
 
211
      skip_error        Whether to skip errors
 
212
 
 
213
  DESCRIPTION
 
214
    Take a table/view name from and odd list element and rename it to a
 
215
    the name taken from list element+1. Note that the table_list may be
 
216
    empty.
 
217
 
 
218
  RETURN
 
219
    false     Ok
 
220
    true      rename failed
 
221
*/
 
222
 
 
223
static TableList *
 
224
rename_tables(Session *session, TableList *table_list, bool skip_error)
 
225
{
 
226
  TableList *ren_table, *new_table;
 
227
 
 
228
  for (ren_table= table_list; ren_table; ren_table= new_table->next_local)
 
229
  {
 
230
    new_table= ren_table->next_local;
 
231
    if (do_rename(session, ren_table, new_table->db, new_table->table_name,
 
232
                  new_table->alias, skip_error))
 
233
      return(ren_table);
 
234
  }
 
235
  return(0);
 
236
}