~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/ha_innodb.h

  • Committer: Brian Aker
  • Date: 2010-04-21 02:28:11 UTC
  • mfrom: (1491.1.4 cleanup-cursor)
  • Revision ID: brian@gaz-20100421022811-4fl7zzze4fprgyp7
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
        uint            last_match_mode;/* match mode of the latest search:
81
81
                                        ROW_SEL_EXACT, ROW_SEL_EXACT_PREFIX,
82
82
                                        or undefined */
83
 
        uint            num_write_row;  /*!< number of write_row() calls */
 
83
        uint            num_doInsertRecord;     /*!< number of doInsertRecord() calls */
84
84
 
85
85
        UNIV_INTERN uint store_key_val_for_row(uint keynr, char* buff, 
86
86
                                   uint buff_len, const unsigned char* record);
130
130
        UNIV_INTERN double scan_time();
131
131
        UNIV_INTERN double read_time(uint index, uint ranges, ha_rows rows);
132
132
 
133
 
        UNIV_INTERN int write_row(unsigned char * buf);
134
 
        UNIV_INTERN int update_row(const unsigned char * old_data, unsigned char * new_data);
135
 
        UNIV_INTERN int delete_row(const unsigned char * buf);
 
133
        UNIV_INTERN int doInsertRecord(unsigned char * buf);
 
134
        UNIV_INTERN int doUpdateRecord(const unsigned char * old_data, unsigned char * new_data);
 
135
        UNIV_INTERN int doDeleteRecord(const unsigned char * buf);
136
136
        UNIV_INTERN bool was_semi_consistent_read();
137
137
        UNIV_INTERN void try_semi_consistent_read(bool yes);
138
138
        UNIV_INTERN void unlock_row();