~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/sel_tree.cc

  • Committer: Brian Aker
  • Date: 2011-02-24 19:58:57 UTC
  • mfrom: (2183.2.25 list2)
  • mto: This revision was merged to the branch mainline in revision 2199.
  • Revision ID: brian@tangent.org-20110224195857-24p1kalw92bmco2n
More list

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
                               List<optimizer::SEL_IMERGE> *im1,
92
92
                               List<optimizer::SEL_IMERGE> *im2)
93
93
{
94
 
  optimizer::SEL_IMERGE *imerge= im1->head();
 
94
  optimizer::SEL_IMERGE *imerge= &im1->front();
95
95
  im1->clear();
96
96
  im1->push_back(imerge);
97
97
 
98
 
  return imerge->or_sel_imerge_with_checks(param, im2->head());
 
98
  return imerge->or_sel_imerge_with_checks(param, &im2->front());
99
99
}
100
100
 
101
101