~stewart/drizzle/embedded-innodb-autoincrement

« back to all changes in this revision

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

  • Committer: Stewart Smith
  • Date: 2010-05-12 12:04:58 UTC
  • mfrom: (1283.120.50 staging)
  • mto: This revision was merged to the branch mainline in revision 1430.
  • Revision ID: stewart@flamingspork.com-20100512120458-grl8fnvsw00z2l1o
merge trunk

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_doInsertRecord;     /*!< number of doInsertRecord() calls */
 
83
        uint            num_write_row;  /*!< 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);
137
137
        UNIV_INTERN void try_semi_consistent_read(bool yes);
138
138
        UNIV_INTERN void unlock_row();
139
139
 
140
 
        UNIV_INTERN int index_init(uint index, bool sorted);
141
 
        UNIV_INTERN int index_end();
 
140
        UNIV_INTERN int doStartIndexScan(uint index, bool sorted);
 
141
        UNIV_INTERN int doEndIndexScan();
142
142
        UNIV_INTERN int index_read(unsigned char * buf, const unsigned char * key,
143
143
                uint key_len, enum ha_rkey_function find_flag);
144
144
        UNIV_INTERN int index_read_idx(unsigned char * buf, uint index, const unsigned char * key,
150
150
        UNIV_INTERN int index_first(unsigned char * buf);
151
151
        UNIV_INTERN int index_last(unsigned char * buf);
152
152
 
153
 
        UNIV_INTERN int rnd_init(bool scan);
154
 
        UNIV_INTERN int rnd_end();
 
153
        UNIV_INTERN int doStartTableScan(bool scan);
 
154
        UNIV_INTERN int doEndTableScan();
155
155
        UNIV_INTERN int rnd_next(unsigned char *buf);
156
156
        UNIV_INTERN int rnd_pos(unsigned char * buf, unsigned char *pos);
157
157