~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/func.cc

  • Committer: Brian Aker
  • Date: 2010-12-24 00:35:17 UTC
  • mto: (2024.1.3 clean)
  • mto: This revision was merged to the branch mainline in revision 2028.
  • Revision ID: brian@tangent.org-20101224003517-5sj0gpm4iectquxs
Merge in CAST operators for SIGNED/UNSIGNED

Show diffs side-by-side

added added

removed removed

Lines of Context:
637
637
  return copy_or_same(session);
638
638
}
639
639
 
 
640
const char *Item_func::full_name() const
 
641
{
 
642
  return func_name();
 
643
}
 
644
 
 
645
std::ostream& operator<<(std::ostream& output, const Item_func &item)
 
646
{
 
647
  output << "Item_func:(";
 
648
  output <<  item.func_name();
 
649
  output << ")";
 
650
 
 
651
  return output;  // for multiple << operators.
 
652
}
 
653
 
640
654
 
641
655
} /* namespace drizzled */