~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Brian Aker
  • Date: 2009-01-07 09:27:07 UTC
  • Revision ID: brian@tangent.org-20090107092707-bn67qpdllfcyh3j9
Removing dead field translator code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2856
2856
 
2857
2857
void TableList::cleanup_items()
2858
2858
{
2859
 
  if (!field_translation)
2860
 
    return;
2861
 
 
2862
 
  for (Field_translator *transl= field_translation;
2863
 
       transl < field_translation_end;
2864
 
       transl++)
2865
 
    transl->item->walk(&Item::cleanup_processor, 0, 0);
2866
2859
}
2867
2860
 
2868
2861