~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/handler.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:
4233
4233
  else
4234
4234
  {
4235
4235
    double n_blocks=
4236
 
      ceil(ulonglong2double(table->file->stats.data_file_length) / IO_SIZE);
 
4236
      ceil(uint64_t2double(table->file->stats.data_file_length) / IO_SIZE);
4237
4237
    double busy_blocks=
4238
4238
      n_blocks * (1.0 - pow(1.0 - 1.0/n_blocks, rows2double(nrows)));
4239
4239
    if (busy_blocks < 1.0)