~stewart/drizzle/embedded-innodb-autoincrement

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.cc

merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
938
938
  of the file and appends the data. In an error case it really should
939
939
  just truncate to the original position (this is not done yet).
940
940
*/
941
 
int ha_tina::write_row(unsigned char * buf)
 
941
int ha_tina::doInsertRecord(unsigned char * buf)
942
942
{
943
943
  int size;
944
944
 
998
998
  This will be called in a table scan right before the previous ::rnd_next()
999
999
  call.
1000
1000
*/
1001
 
int ha_tina::update_row(const unsigned char *, unsigned char * new_data)
 
1001
int ha_tina::doUpdateRecord(const unsigned char *, unsigned char * new_data)
1002
1002
{
1003
1003
  int size;
1004
1004
  int rc= -1;
1043
1043
  The table will then be deleted/positioned based on the ORDER (so RANDOM,
1044
1044
  DESC, ASC).
1045
1045
*/
1046
 
int ha_tina::delete_row(const unsigned char *)
 
1046
int ha_tina::doDeleteRecord(const unsigned char *)
1047
1047
{
1048
1048
  ha_statistic_increment(&system_status_var::ha_delete_count);
1049
1049