~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_update.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:
492
492
      if (table->file->was_semi_consistent_read())
493
493
        continue;  /* repeat the read of the same row if it still exists */
494
494
 
495
 
      store_record(table,record[1]);
 
495
      table->storeRecord();
496
496
      if (fill_record(session, fields, values, 0))
497
497
        break; /* purecov: inspected */
498
498
 
1324
1324
                             HA_PARTIAL_COLUMN_READ) ||
1325
1325
                           ((*table->read_set & *table->write_set) == *table->write_set));
1326
1326
      table->status|= STATUS_UPDATED;
1327
 
      store_record(table,record[1]);
 
1327
      table->storeRecord();
1328
1328
      if (fill_record(session, *fields_for_table[offset],
1329
1329
                      *values_for_table[offset], 0))
1330
1330
        return(1);
1553
1553
      } while((tbl= check_opt_it++));
1554
1554
 
1555
1555
      table->status|= STATUS_UPDATED;
1556
 
      store_record(table,record[1]);
 
1556
      table->storeRecord();
1557
1557
 
1558
1558
      /* Copy data from temporary table to current table */
1559
1559
      for (copy_field_ptr=copy_field;