~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_class.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
375
375
 
376
376
void
377
377
Diagnostics_area::set_ok_status(THD *thd, ha_rows affected_rows_arg,
378
 
                                ulonglong last_insert_id_arg,
 
378
                                uint64_t last_insert_id_arg,
379
379
                                const char *message_arg)
380
380
{
381
381
  assert(! is_set());
2953
2953
  return(0);
2954
2954
}
2955
2955
 
2956
 
bool Discrete_intervals_list::append(ulonglong start, ulonglong val,
2957
 
                                 ulonglong incr)
 
2956
bool Discrete_intervals_list::append(uint64_t start, uint64_t val,
 
2957
                                 uint64_t incr)
2958
2958
{
2959
2959
  /* first, see if this can be merged with previous */
2960
2960
  if ((head == NULL) || tail->merge_if_contiguous(start, val, incr))