~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/archive_test.c

  • Committer: Brian Aker
  • Date: 2009-01-28 19:37:25 UTC
  • mfrom: (779.3.11 devel)
  • Revision ID: brian@tangent.org-20090128193725-pz7g7dnp2dx0863e
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
327
327
  /* We do a double loop to test speed */
328
328
  for (x= 0, read_length= 0; x < 2; x++, read_length= 0)
329
329
  {
330
 
    uint64_t count;
 
330
    uint64_t read_count;
331
331
 
332
332
    azread_init(&reader_handle);
333
 
    for (count= 0; count < writer_handle.rows; count++)
 
333
    for (read_count= 0; read_count < writer_handle.rows; read_count++)
334
334
    {
335
335
      ret= azread_row(&reader_handle, &error);
336
336
      read_length+= ret;