~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/quick_ror_union_select.cc

  • Committer: Olaf van der Spek
  • Date: 2011-08-13 14:36:27 UTC
  • mto: This revision was merged to the branch mainline in revision 2407.
  • Revision ID: olafvdspek@gmail.com-20110813143627-j92kghasif1w2xe4
Refactor DYNAMIC_ARRAY

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
int optimizer::QuickRorUnionSelect::reset()
80
80
{
81
81
  have_prev_rowid= false;
82
 
  if (! scans_inited)
 
82
  if (not scans_inited)
83
83
  {
84
84
    BOOST_FOREACH(QuickSelectInterface* it, quick_selects)
85
85
    {
90
90
    }
91
91
    scans_inited= true;
92
92
  }
93
 
  while (! queue->empty())
 
93
  while (not queue->empty())
94
94
  {
95
95
    queue->pop();
96
96
  }