~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/item_sum.h

  • Committer: Brian Aker
  • Date: 2008-07-07 14:25:25 UTC
  • mto: (77.1.25 codestyle)
  • mto: This revision was merged to the branch mainline in revision 82.
  • Revision ID: brian@tangent.org-20080707142525-xzy2nl3ie2ebwfln
LL() cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
919
919
class Item_sum_or :public Item_sum_bit
920
920
{
921
921
public:
922
 
  Item_sum_or(Item *item_par) :Item_sum_bit(item_par,LL(0)) {}
 
922
  Item_sum_or(Item *item_par) :Item_sum_bit(item_par,0LL) {}
923
923
  Item_sum_or(THD *thd, Item_sum_or *item) :Item_sum_bit(thd, item) {}
924
924
  bool add();
925
925
  const char *func_name() const { return "bit_or("; }
940
940
class Item_sum_xor :public Item_sum_bit
941
941
{
942
942
  public:
943
 
  Item_sum_xor(Item *item_par) :Item_sum_bit(item_par,LL(0)) {}
 
943
  Item_sum_xor(Item *item_par) :Item_sum_bit(item_par,0LL) {}
944
944
  Item_sum_xor(THD *thd, Item_sum_xor *item) :Item_sum_bit(thd, item) {}
945
945
  bool add();
946
946
  const char *func_name() const { return "bit_xor("; }