~stewart/drizzle/embedded-innodb-autoincrement

« back to all changes in this revision

Viewing changes to plugin/archive/ha_archive.cc

merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
692
692
  for implementing start_bulk_insert() is that we could skip
693
693
  setting dirty to true each time.
694
694
*/
695
 
int ha_archive::write_row(unsigned char *buf)
 
695
int ha_archive::doInsertRecord(unsigned char *buf)
696
696
{
697
697
  int rc;
698
698
  unsigned char *read_buf= NULL;
1210
1210
 
1211
1211
/*
1212
1212
  This method tells us that a bulk insert operation is about to occur. We set
1213
 
  a flag which will keep write_row from saying that its data is dirty. This in
 
1213
  a flag which will keep doInsertRecord from saying that its data is dirty. This in
1214
1214
  turn will keep selects from causing a sync to occur.
1215
1215
  Basically, yet another optimizations to keep compression working well.
1216
1216
*/