~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_extra.c

Merged from jay.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
int heap_reset(HP_INFO *info)
52
52
{
53
53
  info->lastinx= -1;
54
 
  info->current_record= UINT32_MAX;
 
54
  info->current_record= (ulong) ~0L;
55
55
  info->current_hash_ptr=0;
56
56
  info->update=0;
57
57
  info->next_block=0;
65
65
static void heap_extra_keyflag(register HP_INFO *info,
66
66
                               enum ha_extra_function function)
67
67
{
68
 
  uint32_t  idx;
 
68
  uint  idx;
69
69
 
70
70
  for (idx= 0; idx< info->s->keys; idx++)
71
71
  {