~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/ha_heap.cc

  • Committer: Brian Aker
  • Date: 2010-06-05 00:14:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1592.
  • Revision ID: brian@gir-20100605001439-kn5v6oaspacx5q6l
Merge in change to getTable() to private the field objects.

Show diffs side-by-side

added added

removed removed

Lines of Context:
735
735
 
736
736
  for (column_idx= 0; column_idx < column_count; column_idx++)
737
737
  {
738
 
    Field* field= *(table_arg->field + column_idx);
 
738
    Field* field= *(table_arg->getFields() + column_idx);
739
739
    HP_COLUMNDEF* column= columndef + column_idx;
740
740
    column->type= (uint16_t)field->type();
741
741
    column->length= field->pack_length();