~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/subselect.cc

  • Committer: Brian Aker
  • Date: 2009-01-23 06:19:11 UTC
  • mfrom: (779.1.29 devel)
  • mto: (779.3.3 devel)
  • mto: This revision was merged to the branch mainline in revision 811.
  • Revision ID: brian@tangent.org-20090123061911-59es83nxzlyvh5fi
Merge of Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
}
152
152
 
153
153
Item_subselect::trans_res
154
 
Item_subselect::select_transformer(JOIN *join __attribute__((unused)))
 
154
Item_subselect::select_transformer(JOIN *)
155
155
{
156
156
  return(RES_OK);
157
157
}
1861
1861
  @retval false otherwise
1862
1862
*/
1863
1863
 
1864
 
bool Item_in_subselect::is_expensive_processor(unsigned char *arg __attribute__((unused)))
 
1864
bool Item_in_subselect::is_expensive_processor(unsigned char *)
1865
1865
{
1866
1866
  return exec_method == MATERIALIZATION;
1867
1867
}
2114
2114
  }
2115
2115
}
2116
2116
 
2117
 
void subselect_uniquesubquery_engine::fix_length_and_dec(Item_cache **row __attribute__((unused)))
 
2117
void subselect_uniquesubquery_engine::fix_length_and_dec(Item_cache **)
2118
2118
{
2119
2119
  //this never should be called
2120
2120
  assert(0);
2827
2827
    true  error
2828
2828
*/
2829
2829
 
2830
 
bool subselect_uniquesubquery_engine::change_result(Item_subselect *si __attribute__((unused)),
2831
 
                                                    select_result_interceptor *res __attribute__((unused)))
 
2830
bool subselect_uniquesubquery_engine::change_result(Item_subselect *,
 
2831
                                                    select_result_interceptor *)
2832
2832
{
2833
2833
  assert(0);
2834
2834
  return true;