~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.h

  • Committer: Jay Pipes
  • Date: 2010-04-20 18:33:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1501.
  • Revision ID: jpipes@serialcoder-20100420183321-v1glb8qm3l88gv1j
Cursor::update_row() changed to doUpdateRecord() and updateRecord()

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
  int open(const char *name, int mode, uint32_t test_if_locked);
46
46
  int close(void);
47
47
  int doInsertRecord(unsigned char * buf);
48
 
  int update_row(const unsigned char * old_data, unsigned char * new_data);
 
48
  int doUpdateRecord(const unsigned char * old_data, unsigned char * new_data);
49
49
  int delete_row(const unsigned char * buf);
50
50
  int index_read_map(unsigned char *buf, const unsigned char *key, drizzled::key_part_map keypart_map,
51
51
                     enum drizzled::ha_rkey_function find_flag);