~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/hp_clear.cc

  • Committer: Brian Aker
  • Date: 2009-10-16 10:27:33 UTC
  • mfrom: (1183.1.4 merge)
  • Revision ID: brian@gaz-20091016102733-b10po5oup0hjlilh
MergeĀ EngineĀ changes.

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
  remove all records from database
21
21
 
22
22
#include "heap_priv.h"
23
23
 
24
 
using namespace drizzled;
25
 
 
26
24
static void hp_clear_keys(HP_SHARE *info);
27
25
 
28
26
void heap_clear(HP_INFO *info)
29
27
{
30
 
  hp_clear(info->getShare());
 
28
  hp_clear(info->s);
31
29
}
32
30
 
33
31
void hp_clear(HP_SHARE *info)
56
54
 
57
55
static void hp_clear_keys(HP_SHARE *info)
58
56
{
59
 
  for (uint32_t key=0 ; key < info->keys ; key++)
 
57
  uint32_t key;
 
58
 
 
59
  for (key=0 ; key < info->keys ; key++)
60
60
  {
61
61
    HP_KEYDEF *keyinfo = info->keydef + key;
 
62
    if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
 
63
    {
 
64
      delete_tree(&keyinfo->rb_tree);
 
65
    }
 
66
    else
62
67
    {
63
68
      HP_BLOCK *block= &keyinfo->block;
64
69
      if (block->levels)
69
74
    }
70
75
  }
71
76
  info->index_length=0;
 
77
  return;
72
78
}
73
79
 
74
80
 
88
94
 
89
95
int heap_disable_indexes(HP_INFO *info)
90
96
{
91
 
  HP_SHARE *share= info->getShare();
 
97
  HP_SHARE *share= info->s;
92
98
 
93
99
  if (share->keys)
94
100
  {
122
128
int heap_enable_indexes(HP_INFO *info)
123
129
{
124
130
  int error= 0;
125
 
  HP_SHARE *share= info->getShare();
 
131
  HP_SHARE *share= info->s;
126
132
 
127
133
  if (share->recordspace.total_data_length || share->index_length)
128
134
    error= HA_ERR_CRASHED;
154
160
 
155
161
int heap_indexes_are_disabled(HP_INFO *info)
156
162
{
157
 
  HP_SHARE *share= info->getShare();
 
163
  HP_SHARE *share= info->s;
158
164
 
159
165
  return (! share->keys && share->currently_disabled_keys);
160
166
}