~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_sum.h

  • Committer: Monty Taylor
  • Date: 2008-09-23 01:53:40 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: monty@inaugust.com-20080923015340-z8p6sbl7y27c4k30
Enabled -Wlong-long.

Show diffs side-by-side

added added

removed removed

Lines of Context:
923
923
class Item_sum_or :public Item_sum_bit
924
924
{
925
925
public:
926
 
  Item_sum_or(Item *item_par) :Item_sum_bit(item_par,0LL) {}
 
926
  Item_sum_or(Item *item_par) :Item_sum_bit(item_par,0) {}
927
927
  Item_sum_or(THD *thd, Item_sum_or *item) :Item_sum_bit(thd, item) {}
928
928
  bool add();
929
929
  const char *func_name() const { return "bit_or("; }
944
944
class Item_sum_xor :public Item_sum_bit
945
945
{
946
946
  public:
947
 
  Item_sum_xor(Item *item_par) :Item_sum_bit(item_par,0LL) {}
 
947
  Item_sum_xor(Item *item_par) :Item_sum_bit(item_par,0) {}
948
948
  Item_sum_xor(THD *thd, Item_sum_xor *item) :Item_sum_bit(thd, item) {}
949
949
  bool add();
950
950
  const char *func_name() const { return "bit_xor("; }