~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/handler.cc

Merged in Jay's tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2201
2201
  offset and increment means that we want values to be of the form
2202
2202
  offset + N * increment, where N>=0 is integer.
2203
2203
  If the function sets *first_value to ~(uint64_t)0 it means an error.
2204
 
  If the function sets *nb_reserved_values to ULONGLONG_MAX it means it has
 
2204
  If the function sets *nb_reserved_values to UINT64_MAX it means it has
2205
2205
  reserved to "positive infinite".
2206
2206
 
2207
2207
  @param offset
2232
2232
      use nr+increment without checking again with the handler, in
2233
2233
      handler::update_auto_increment()), so reserves to infinite.
2234
2234
    */
2235
 
    *nb_reserved_values= ULONGLONG_MAX;
 
2235
    *nb_reserved_values= UINT64_MAX;
2236
2236
  }
2237
2237
  else
2238
2238
  {