~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_string.h

  • 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:
155
155
  bool set_int(longlong num, bool unsigned_flag, CHARSET_INFO *cs);
156
156
  bool set(longlong num, CHARSET_INFO *cs)
157
157
  { return set_int(num, false, cs); }
158
 
  bool set(ulonglong num, CHARSET_INFO *cs)
 
158
  bool set(uint64_t num, CHARSET_INFO *cs)
159
159
  { return set_int((longlong)num, true, cs); }
160
160
  bool set_real(double num,uint decimals, CHARSET_INFO *cs);
161
161