~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Monty Taylor
  • Date: 2009-01-28 04:37:46 UTC
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 816.
  • Revision ID: mordred@inaugust.com-20090128043746-d2yukekishwn3ftm
TurnedĀ onĀ -Wshadow.

Show diffs side-by-side

added added

removed removed

Lines of Context:
308
308
 
309
309
 
310
310
Item::Item():
311
 
  is_expensive_cache(-1), name(0), orig_name(0), name_length(0),
312
 
  fixed(0), is_autogenerated_name(true),
 
311
  is_expensive_cache(-1), name(0), orig_name(0), max_length(0), name_length(0),
 
312
  unsigned_flag(false), fixed(0), is_autogenerated_name(true),
313
313
  collation(&my_charset_bin, DERIVATION_COERCIBLE)
314
314
{
315
315
  marker= 0;
318
318
  with_sum_func= false;
319
319
  unsigned_flag= false;
320
320
  decimals= 0;
321
 
  max_length= 0;
322
321
  with_subselect= 0;
323
322
  cmp_context= (Item_result)-1;
324
323
 
688
687
}
689
688
 
690
689
 
 
690
const Item *Item::real_item(void) const
 
691
{
 
692
  return this;
 
693
}
 
694
 
 
695
 
691
696
Item *Item::get_tmp_table_item(Session *session)
692
697
{
693
698
  return copy_or_same(session);