~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.h

  • Committer: Jay Pipes
  • Date: 2010-04-20 18:14:52 UTC
  • mto: This revision was merged to the branch mainline in revision 1501.
  • Revision ID: jpipes@serialcoder-20100420181452-l57dtelwond5xt6g
Cursor::write_row() -> Cursor::doInsertRecord().  Cursor::ha_write_row() -> Cursor::insertRecord()

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);
 
129
  int doInsertRecord(unsigned char * buf);
130
130
  int update_row(const unsigned char * old_data, unsigned char * new_data);
131
131
  int delete_row(const unsigned char * buf);
132
132
  int rnd_init(bool scan=1);