~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.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:
853
853
  Field **f_ptr,*field;
854
854
 
855
855
  null_fields= blobs= fields= rec_length=0;
856
 
  for (f_ptr=join_tab->table->field ; (field= *f_ptr) ; f_ptr++)
 
856
  for (f_ptr=join_tab->table->getFields() ; (field= *f_ptr) ; f_ptr++)
857
857
  {
858
858
    if (field->isReadSet())
859
859
    {