sql_rename.cc 4.05 KB
Newer Older
unknown's avatar
unknown committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */

/*
  Atomic rename of table;  RENAME TABLE t1 to t2, tmp to t1 [,...]
*/

#include "mysql_priv.h"


unknown's avatar
unknown committed
24 25
static TABLE_LIST *rename_tables(THD *thd, TABLE_LIST *table_list,
				 bool skip_error);
unknown's avatar
unknown committed
26 27 28 29 30 31 32 33 34

/*
  Every second entry in the table_list is the original name and every
  second entry is the new name.
*/

bool mysql_rename_tables(THD *thd, TABLE_LIST *table_list)
{
  bool error=1,got_all_locks=1;
unknown's avatar
unknown committed
35
  TABLE_LIST *lock_table,*ren_table=0;
unknown's avatar
unknown committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
  DBUG_ENTER("mysql_rename_tables");
  
  /* Avoid problems with a rename on a table that we have locked or
     if the user is trying to to do this in a transcation context */

  if (thd->locked_tables || thd->active_transaction())
  {
    my_error(ER_LOCK_OR_ACTIVE_TRANSACTION,MYF(0));
    DBUG_RETURN(1);
  }
      
  VOID(pthread_mutex_lock(&LOCK_open));
  for (lock_table=table_list ; lock_table ; lock_table=lock_table->next)
  {
    int got_lock;
    if ((got_lock=lock_table_name(thd,lock_table)) < 0)
      goto end;
    if (got_lock)
      got_all_locks=0;
  }
  
  if (!got_all_locks && wait_for_locked_table_names(thd,table_list))
    goto end;

unknown's avatar
unknown committed
60
  if (!(ren_table=rename_tables(thd,table_list,0)))
unknown's avatar
unknown committed
61 62 63 64 65 66 67
    error=0;
  
end:
  if (ren_table)
  {
    /* Rename didn't succeed;  rename back the tables in reverse order */
    TABLE_LIST *prev=0,*table;
unknown's avatar
unknown committed
68 69
    /* Reverse the table list */

unknown's avatar
unknown committed
70 71
    while (table_list)
    {
unknown's avatar
unknown committed
72 73
      TABLE_LIST *next=table_list->next;
      table_list->next=prev;
unknown's avatar
unknown committed
74 75 76 77 78 79
      prev=table_list;
      table_list=next;
    }
    table_list=prev;

    /* Find the last renamed table */
unknown's avatar
unknown committed
80 81
    for (table=table_list ;
	 table->next != ren_table ;
unknown's avatar
unknown committed
82 83 84
	 table=table->next->next) ;
    table=table->next->next;			// Skipp error table
    /* Revert to old names */
unknown's avatar
unknown committed
85
    rename_tables(thd, table, 1);
unknown's avatar
unknown committed
86 87 88 89 90 91 92
    /* Note that lock_table == 0 here, so the unlock loop will work */
  }
  if (!error)
  {
    mysql_update_log.write(thd->query,thd->query_length);
    Query_log_event qinfo(thd, thd->query);
    mysql_bin_log.write(&qinfo);
unknown's avatar
unknown committed
93
    send_ok(&thd->net);
unknown's avatar
unknown committed
94 95 96 97 98 99 100 101 102 103 104
  }
  for (TABLE_LIST *table=table_list ; table != lock_table ; table=table->next)
    unlock_table_name(thd,table);
  pthread_cond_broadcast(&COND_refresh);
  pthread_mutex_unlock(&LOCK_open);
  DBUG_RETURN(error);
}


/*
  Rename all tables in list; Return pointer to wrong entry if something goes
unknown's avatar
unknown committed
105
  wrong.  Note that the table_list may be empty!
unknown's avatar
unknown committed
106 107 108
*/

static TABLE_LIST *
unknown's avatar
unknown committed
109
rename_tables(THD *thd, TABLE_LIST *table_list, bool skip_error)
unknown's avatar
unknown committed
110
{
unknown's avatar
unknown committed
111 112 113 114
  TABLE_LIST *ren_table,*new_table;
  DBUG_ENTER("rename_tables");

  for (ren_table=table_list ; ren_table ; ren_table=new_table->next)
unknown's avatar
unknown committed
115 116 117
  {
    db_type table_type;
    char name[FN_REFLEN];
unknown's avatar
unknown committed
118
    new_table=ren_table->next;
unknown's avatar
unknown committed
119

unknown's avatar
unknown committed
120 121 122 123 124 125 126 127
    sprintf(name,"%s/%s/%s%s",mysql_data_home,
	    new_table->db,new_table->name,
	    reg_ext);
    if (!access(name,F_OK))
    {
      my_error(ER_TABLE_EXISTS_ERROR,MYF(0),name);
      return ren_table;				// This can't be skipped
    }
unknown's avatar
unknown committed
128 129 130
    sprintf(name,"%s/%s/%s%s",mysql_data_home,
	    ren_table->db,ren_table->name,
	    reg_ext);
unknown's avatar
unknown committed
131 132 133 134 135 136 137 138 139
    if ((table_type=get_table_type(name)) == DB_TYPE_UNKNOWN)
    {
      my_error(ER_FILE_NOT_FOUND, MYF(0), name, my_errno);
      if (!skip_error)
	return ren_table;
    }
    else if (mysql_rename_table(table_type,
				ren_table->db, ren_table->name,
				new_table->db, new_table->name))
unknown's avatar
unknown committed
140 141 142 143 144
    {
      if (!skip_error)
	return ren_table;
    }
  }
unknown's avatar
unknown committed
145
  DBUG_RETURN(0);
unknown's avatar
unknown committed
146
}