~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/additive_op.h

  • Committer: Brian Aker
  • Date: 2009-05-15 07:40:30 UTC
  • mfrom: (1019.1.7 merge)
  • Revision ID: brian@gaz-20090515074030-che1sh7nqadhyj45
Code / Style cleanup merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
public:
29
29
  Item_func_additive_op(Item *a,Item *b) :Item_num_op(a,b) {}
30
30
  void result_precision();
31
 
  bool check_vcol_func_processor(unsigned char *)
32
 
  { return false; }
33
 
 
34
31
};
35
32
 
36
33