~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/opt_sum.cc

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
252
252
            const_result= 0;
253
253
            break;
254
254
          }
255
 
          error= table->file->ha_index_init((uint) ref.key, 1);
 
255
          error= table->file->ha_index_init((uint32_t) ref.key, 1);
256
256
 
257
257
          if (!ref.key_length)
258
258
            error= table->file->index_first(table->record[0]);
400
400
            const_result= 0;
401
401
            break;
402
402
          }
403
 
          error= table->file->ha_index_init((uint) ref.key, 1);
 
403
          error= table->file->ha_index_init((uint32_t) ref.key, 1);
404
404
 
405
405
          if (!ref.key_length)
406
406
            error= table->file->index_last(table->record[0]);