~mordred/drizzle/codestyle

« back to all changes in this revision

Viewing changes to drizzled/functions/additive_op.h

  • Committer: Monty Taylor
  • Date: 2008-10-13 10:14:09 UTC
  • mfrom: (383.7.6 drizzle-virtual-columns)
  • mto: This revision was merged to the branch mainline in revision 511.
  • Revision ID: monty@inaugust.com-20081013101409-aszm0nonww0f07zd
Merged in Virtual Column work.

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 *int_arg __attribute__((unused)))
 
32
  { return false; }
 
33
 
31
34
};
32
35
 
33
36