~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/fstring.cc

Replaced long long with int64_t.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
  const char *cannot_convert_error_pos;
43
43
  const char *from_end_pos;
44
44
 
45
 
  /* See the comment for Field_long::store(long long) */
 
45
  /* See the comment for Field_long::store(int64_t) */
46
46
  assert(table->in_use == current_thd);
47
47
 
48
48
  copy_length= well_formed_copy_nchars(field_charset,
131
131
String *Field_string::val_str(String *val_buffer __attribute__((unused)),
132
132
                              String *val_ptr)
133
133
{
134
 
  /* See the comment for Field_long::store(long long) */
 
134
  /* See the comment for Field_long::store(int64_t) */
135
135
  assert(table->in_use == current_thd);
136
136
  uint length;
137
137