~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-28 03:17:05 UTC
  • mto: (1112.1.3 merge)
  • mto: This revision was merged to the branch mainline in revision 1113.
  • Revision ID: osullivan.padraig@gmail.com-20090728031705-1ndvsfi2nu48w1mk
Modified the nested_join_map typedef to be std::bitset instead of uint64_t.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4000
4000
  TableList *next_emb= next_tab->table->pos_in_table_list->embedding;
4001
4001
  JOIN *join= last_tab->join;
4002
4002
 
4003
 
  if (join->cur_embedding_map & ~next_tab->embedding_map)
 
4003
  if ((join->cur_embedding_map & ~next_tab->embedding_map).any())
4004
4004
  {
4005
4005
    /*
4006
4006
      next_tab is outside of the "pair of brackets" we're currently in.