~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/handler.h

  • 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:
1315
1315
  }
1316
1316
  /* Estimates calculation */
1317
1317
  virtual double scan_time(void)
1318
 
  { return ulonglong2double(stats.data_file_length) / IO_SIZE + 2; }
 
1318
  { return uint64_t2double(stats.data_file_length) / IO_SIZE + 2; }
1319
1319
  virtual double read_time(uint index __attribute__((__unused__)),
1320
1320
                           uint ranges, ha_rows rows)
1321
1321
  { return rows2double(ranges+rows); }