~stewart/drizzle/embedded-innodb-autoincrement

« back to all changes in this revision

Viewing changes to plugin/heap/ha_heap.cc

merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
323
323
}
324
324
 
325
325
 
326
 
int ha_heap::write_row(unsigned char * buf)
 
326
int ha_heap::doInsertRecord(unsigned char * buf)
327
327
{
328
328
  int res;
329
329
  ha_statistic_increment(&system_status_var::ha_write_count);
345
345
  return res;
346
346
}
347
347
 
348
 
int ha_heap::update_row(const unsigned char * old_data, unsigned char * new_data)
 
348
int ha_heap::doUpdateRecord(const unsigned char * old_data, unsigned char * new_data)
349
349
{
350
350
  int res;
351
351
  ha_statistic_increment(&system_status_var::ha_update_count);
364
364
  return res;
365
365
}
366
366
 
367
 
int ha_heap::delete_row(const unsigned char * buf)
 
367
int ha_heap::doDeleteRecord(const unsigned char * buf)
368
368
{
369
369
  int res;
370
370
  ha_statistic_increment(&system_status_var::ha_delete_count);