~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/item_subselect.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:
773
773
    reset();
774
774
    return 0;
775
775
  }
776
 
  str->set((ulonglong)value,&my_charset_bin);
 
776
  str->set((uint64_t)value,&my_charset_bin);
777
777
  return str;
778
778
}
779
779
 
864
864
    null_value= 1;
865
865
    return 0;
866
866
  }
867
 
  str->set((ulonglong)value, &my_charset_bin);
 
867
  str->set((uint64_t)value, &my_charset_bin);
868
868
  return str;
869
869
}
870
870