~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to storage/innobase/include/dict0dict.h

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
185
185
dict_table_autoinc_initialize(
186
186
/*==========================*/
187
187
        dict_table_t*   table,  /* in: table */
188
 
        ib_longlong     value); /* in: next value to assign to a row */
 
188
        ib_ulonglong    value); /* in: next value to assign to a row */
189
189
/************************************************************************
190
190
Reads the next autoinc value (== autoinc counter value), 0 if not yet
191
191
initialized. */
192
192
 
193
 
ib_longlong
 
193
ib_ulonglong
194
194
dict_table_autoinc_read(
195
195
/*====================*/
196
196
                                /* out: value for a new row, or 0 */
204
204
/*======================*/
205
205
 
206
206
        dict_table_t*   table,  /* in: table */
207
 
        ib_longlong     value); /* in: value which was assigned to a row */
 
207
        ib_ulonglong    value); /* in: value which was assigned to a row */
208
208
/************************************************************************
209
209
Release the autoinc lock.*/
210
210