~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-08 03:52:20 UTC
  • mto: (1089.3.4 merge)
  • mto: This revision was merged to the branch mainline in revision 1092.
  • Revision ID: osullivan.padraig@gmail.com-20090708035220-b5llzx67w3ycof0w
Converted the test_flags variable from a uint32_t to std::bitset.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1039
1039
 
1040
1040
    tmp_table_param.hidden_field_count= (all_fields.elements -
1041
1041
           fields_list.elements);
1042
 
    order_st *tmp_group= ((!simple_group && !(test_flags & TEST_NO_KEY_GROUP)) ? group_list :
1043
 
                                                             (order_st*) 0);
 
1042
    order_st *tmp_group= ((!simple_group && 
 
1043
                           ! (test_flags.test(TEST_NO_KEY_GROUP))) ? group_list :
 
1044
                                                                     (order_st*) 0);
1044
1045
    /*
1045
1046
      Pushing LIMIT to the temporary table creation is not applicable
1046
1047
      when there is order_st BY or GROUP BY or there is no GROUP BY, but