~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/filesort.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:
629
629
                       MYF(MY_WME)))
630
630
    goto err;                                   /* purecov: inspected */
631
631
  /* check we won't have more buffpeks than we can possibly keep in memory */
632
 
  if (my_b_tell(buffpek_pointers) + sizeof(BUFFPEK) > (ulonglong)UINT_MAX)
 
632
  if (my_b_tell(buffpek_pointers) + sizeof(BUFFPEK) > (uint64_t)UINT_MAX)
633
633
    goto err;
634
634
  buffpek.file_pos= my_b_tell(tempfile);
635
635
  if ((ha_rows) count > param->max_rows)