~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:45:08 UTC
  • Revision ID: brian@tangent.org-20080713224508-hb20z4okblotb39a
longlong replacement

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
    }
153
153
    str_charset=cs;
154
154
  }
155
 
  bool set_int(longlong num, bool unsigned_flag, CHARSET_INFO *cs);
156
 
  bool set(longlong num, CHARSET_INFO *cs)
 
155
  bool set_int(int64_t num, bool unsigned_flag, CHARSET_INFO *cs);
 
156
  bool set(int64_t num, CHARSET_INFO *cs)
157
157
  { return set_int(num, false, cs); }
158
158
  bool set(uint64_t num, CHARSET_INFO *cs)
159
 
  { return set_int((longlong)num, true, cs); }
 
159
  { return set_int((int64_t)num, true, cs); }
160
160
  bool set_real(double num,uint decimals, CHARSET_INFO *cs);
161
161
 
162
162
  /*