~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.cc

  • Committer: Brian Aker
  • Date: 2009-11-11 21:40:59 UTC
  • mfrom: (1208.3.3 reference)
  • mto: This revision was merged to the branch mainline in revision 1212.
  • Revision ID: brian@gaz-20091111214059-0xfxkwrrixpx2jd9
Update for cursor name change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
848
848
 
849
849
bool Field::optimize_range(uint32_t idx, uint32_t part)
850
850
{
851
 
  return test(table->file->index_flags(idx, part, 1) & HA_READ_RANGE);
 
851
  return test(table->cursor->index_flags(idx, part, 1) & HA_READ_RANGE);
852
852
}
853
853
 
854
854
Field *Field::new_field(MEM_ROOT *root, Table *new_table, bool)