~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/embedded_innodb_engine.cc

fix update_record nad delete_record in embedded_innodb to be doUpdateRecord and doDeleteRecord

Show diffs side-by-side

added added

removed removed

Lines of Context:
1223
1223
  return ret;
1224
1224
}
1225
1225
 
1226
 
int EmbeddedInnoDBCursor::update_row(const unsigned char * ,
1227
 
                                     unsigned char * )
 
1226
int EmbeddedInnoDBCursor::doUpdateRecord(const unsigned char * ,
 
1227
                                         unsigned char * )
1228
1228
{
1229
1229
  ib_tpl_t update_tuple;
1230
1230
  ib_err_t err;
1249
1249
    return -1;
1250
1250
}
1251
1251
 
1252
 
int EmbeddedInnoDBCursor::delete_row(const unsigned char *)
 
1252
int EmbeddedInnoDBCursor::doDeleteRecord(const unsigned char *)
1253
1253
{
1254
1254
  ib_err_t err;
1255
1255