~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/hp_clear.cc

  • Committer: Brian Aker
  • Date: 2010-01-27 18:58:12 UTC
  • Revision ID: brian@gaz-20100127185812-n62n0vwetnx8jrjy
Remove dead code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
  database remains open.
20
20
*/
21
21
 
22
 
#include "heapdef.h"
 
22
#include "heap_priv.h"
 
23
 
 
24
static void hp_clear_keys(HP_SHARE *info);
23
25
 
24
26
void heap_clear(HP_INFO *info)
25
27
{
36
38
  return;
37
39
}
38
40
 
39
 
 
40
 
/*
41
 
  Clear all keys.
42
 
 
43
 
  SYNOPSIS
44
 
    heap_clear_keys()
45
 
    info      A pointer to the heap storage engine HP_INFO struct.
46
 
 
47
 
  DESCRIPTION
48
 
    Delete all trees of all indexes and leave them empty.
49
 
 
50
 
  RETURN
51
 
    void
52
 
*/
53
 
 
54
 
void heap_clear_keys(HP_INFO *info)
55
 
{
56
 
  hp_clear(info->s);
57
 
}
58
 
 
59
 
 
60
41
/*
61
42
  Clear all keys.
62
43
 
71
52
    void
72
53
*/
73
54
 
74
 
void hp_clear_keys(HP_SHARE *info)
 
55
static void hp_clear_keys(HP_SHARE *info)
75
56
{
76
 
  uint key;
 
57
  uint32_t key;
77
58
 
78
59
  for (key=0 ; key < info->keys ; key++)
79
60
  {
86
67
    {
87
68
      HP_BLOCK *block= &keyinfo->block;
88
69
      if (block->levels)
89
 
        VOID(hp_free_level(block,block->levels,block->root,(uchar*) 0));
 
70
        hp_free_level(block,block->levels,block->root,(unsigned char*) 0);
90
71
      block->levels=0;
91
72
      block->last_allocated=0;
92
73
      keyinfo->hash_buckets= 0;