~stewart/drizzle/embedded-innodb-autoincrement

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.h

merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
 
127
127
  int open(const char *name, int mode, uint32_t open_options);
128
128
  int close(void);
129
 
  int write_row(unsigned char * buf);
130
 
  int update_row(const unsigned char * old_data, unsigned char * new_data);
131
 
  int delete_row(const unsigned char * buf);
 
129
  int doInsertRecord(unsigned char * buf);
 
130
  int doUpdateRecord(const unsigned char * old_data, unsigned char * new_data);
 
131
  int doDeleteRecord(const unsigned char * buf);
132
132
  int rnd_init(bool scan=1);
133
133
  int rnd_next(unsigned char *buf);
134
134
  int rnd_pos(unsigned char * buf, unsigned char *pos);