~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/hp_rename.cc

  • Committer: Brian Aker
  • Date: 2010-07-09 21:43:25 UTC
  • mfrom: (1643.5.1 dr-bug-600624)
  • Revision ID: brian@gaz-20100709214325-4rllc5yyo6bku5sh
Merge Prafulla Tekawade

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
/*
17
17
  Rename a table
23
23
 
24
24
int heap_rename(const char *old_name, const char *new_name)
25
25
{
26
 
  HP_SHARE *info;
 
26
  register HP_SHARE *info;
 
27
  char *name_buff;
27
28
 
28
 
  THR_LOCK_heap.lock();
 
29
  pthread_mutex_lock(&THR_LOCK_heap);
29
30
  if ((info = hp_find_named_heap(old_name)))
30
31
  {
31
 
    info->name.clear();
32
 
    info->name.append(new_name);
 
32
    if (!(name_buff=(char*) strdup(new_name)))
 
33
    {
 
34
      pthread_mutex_unlock(&THR_LOCK_heap);
 
35
      return(errno);
 
36
    }
 
37
    free(info->name);
 
38
    info->name=name_buff;
33
39
  }
34
 
  THR_LOCK_heap.unlock();
 
40
  pthread_mutex_unlock(&THR_LOCK_heap);
35
41
  return(0);
36
42
}