~mkindahl/drizzle/remove-mem-casts

« back to all changes in this revision

Viewing changes to server/item_subselect.cc

  • Committer: Brian Aker
  • Date: 2008-07-23 00:11:39 UTC
  • Revision ID: brian@tangent.org-20080723001139-967ewfngqqotwb6e
Removed final uint dead types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
bool Item_subselect::fix_fields(THD *thd_param, Item **ref)
157
157
{
158
158
  char const *save_where= thd_param->where;
159
 
  uint8 uncacheable;
 
159
  uint8_t uncacheable;
160
160
  bool res;
161
161
 
162
162
  assert(fixed == 0);
2622
2622
}
2623
2623
 
2624
2624
 
2625
 
uint8 subselect_single_select_engine::uncacheable()
 
2625
uint8_t subselect_single_select_engine::uncacheable()
2626
2626
{
2627
2627
  return select_lex->uncacheable;
2628
2628
}
2629
2629
 
2630
2630
 
2631
 
uint8 subselect_union_engine::uncacheable()
 
2631
uint8_t subselect_union_engine::uncacheable()
2632
2632
{
2633
2633
  return unit->uncacheable;
2634
2634
}