~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_check.cc

  • Committer: lbieber
  • Date: 2010-10-07 02:59:11 UTC
  • mfrom: (1818.1.2 build)
  • Revision ID: lbieber@orisndriz08-20101007025911-rz1n8q23hrwxks6v
Merge Brian - Fix a large number of warning issues on ICC. sql_string becomes 64bit
Merge Monty - clean up ICC warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
459
459
                  llstr(share->state.key_root[key],buff));
460
460
      if (!(param->testflag & T_INFO))
461
461
        return(-1);
462
 
      result= -1;
 
462
      result= UINT32_MAX;
463
463
      continue;
464
464
    }
465
465
    param->key_file_blocks+=keyinfo->block_length;
478
478
                    llstr(info->state->records,buff2));
479
479
        if (!(param->testflag & T_INFO))
480
480
        return(-1);
481
 
        result= -1;
 
481
        result= UINT32_MAX;
482
482
        continue;
483
483
      }
484
484
      if (found_keys - full_text_keys == 1 &&
495
495
          mi_check_print_error(param,"Key 1 doesn't point at all records");
496
496
        if (!(param->testflag & T_INFO))
497
497
          return(-1);
498
 
        result= -1;
 
498
        result= UINT32_MAX;
499
499
        continue;
500
500
      }
501
501
    }
894
894
      puts("- check record links");
895
895
  }
896
896
 
897
 
  if (!mi_alloc_rec_buff(info, -1, &record))
 
897
  if (!mi_alloc_rec_buff(info, SIZE_MAX, &record))
898
898
  {
899
899
    mi_check_print_error(param,"Not enough memory for record");
900
900
    return(-1);
1447
1447
                      MYF(MY_WME | MY_WAIT_IF_FULL)))
1448
1448
      goto err;
1449
1449
  info->opt_flag|=WRITE_CACHE_USED;
1450
 
  if (!mi_alloc_rec_buff(info, -1, &sort_param.record) ||
1451
 
      !mi_alloc_rec_buff(info, -1, &sort_param.rec_buff))
 
1450
  if (!mi_alloc_rec_buff(info, SIZE_MAX, &sort_param.record) ||
 
1451
      !mi_alloc_rec_buff(info, SIZE_MAX, &sort_param.rec_buff))
1452
1452
  {
1453
1453
    mi_check_print_error(param, "Not enough memory for extra record");
1454
1454
    goto err;
2061
2061
  info->opt_flag|=WRITE_CACHE_USED;
2062
2062
  info->rec_cache.file=info->dfile;             /* for sort_delete_record */
2063
2063
 
2064
 
  if (!mi_alloc_rec_buff(info, -1, &sort_param.record) ||
2065
 
      !mi_alloc_rec_buff(info, -1, &sort_param.rec_buff))
 
2064
  if (!mi_alloc_rec_buff(info, SIZE_MAX, &sort_param.record) ||
 
2065
      !mi_alloc_rec_buff(info, SIZE_MAX, &sort_param.rec_buff))
2066
2066
  {
2067
2067
    mi_check_print_error(param, "Not enough memory for extra record");
2068
2068
    goto err;
3276
3276
    We have to use an allocated buffer instead of info->rec_buff as
3277
3277
    _mi_put_key_in_record() may use info->rec_buff
3278
3278
  */
3279
 
  if (!mi_alloc_rec_buff(info, -1, &record))
 
3279
  if (!mi_alloc_rec_buff(info, SIZE_MAX, &record))
3280
3280
  {
3281
3281
    mi_check_print_error(param,"Not enough memory for extra record");
3282
3282
    return;