~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.cc

Replace macros around unireg.h, store_record,restore_record,cmp_record,empty_record

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
void init_read_record_idx(READ_RECORD *info, Session *, Table *table,
58
58
                          bool print_error, uint32_t idx)
59
59
{
60
 
  empty_record(table);
 
60
  table->emptyRecord();
61
61
  memset(info, 0, sizeof(*info));
62
62
  info->table= table;
63
63
  info->file=  table->file;
163
163
  }
164
164
  else
165
165
  {
166
 
    empty_record(table);
 
166
    table->emptyRecord();
167
167
    info->record= table->record[0];
168
168
    info->ref_length= table->file->ref_length;
169
169
  }