~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.cc

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
void init_read_record_idx(READ_RECORD *info,
55
55
                          THD *thd __attribute__((unused)),
56
56
                          Table *table,
57
 
                          bool print_error, uint idx)
 
57
                          bool print_error, uint32_t idx)
58
58
{
59
59
  empty_record(table);
60
60
  memset(info, 0, sizeof(*info));
478
478
 
479
479
static int init_rr_cache(THD *thd, READ_RECORD *info)
480
480
{
481
 
  uint rec_cache_size;
 
481
  uint32_t rec_cache_size;
482
482
 
483
483
  info->struct_length= 3+MAX_REFLENGTH;
484
484
  info->reclength= ALIGN_SIZE(info->table->s->reclength+1);
510
510
 
511
511
static int rr_from_cache(READ_RECORD *info)
512
512
{
513
 
  register uint i;
 
513
  register uint32_t i;
514
514
  uint32_t length;
515
515
  my_off_t rest_of_file;
516
516
  int16_t error;