~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/math/floor.h

  • Committer: Brian Aker
  • Date: 2009-01-17 02:46:52 UTC
  • Revision ID: brian@gir-3.local-20090117024652-4ducefje08ajbs1q
Refactor append_identifier and remove dead OPTION_QUOTE_SHOW_CREATE option
(we always quote).

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <drizzled/function/func.h>
24
24
#include <drizzled/function/math/int_val.h>
25
25
 
26
 
namespace drizzled
27
 
{
28
 
 
29
26
class Item_func_floor :public Item_func_int_val
30
27
{
31
28
public:
34
31
  int64_t int_op();
35
32
  double real_op();
36
33
  my_decimal *decimal_op(my_decimal *);
 
34
  bool check_vcol_func_processor(unsigned char *)
 
35
  { return false; }
37
36
};
38
37
 
39
 
} /* namespace drizzled */
40
 
 
41
38
#endif /* DRIZZLED_FUNCTION_MATH_FLOOR_H */