~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/math/int.cc

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
#include "config.h"
21
21
 
22
 
#include CSTDINT_H
23
22
#include <cassert>
24
23
 
25
24
#include <drizzled/sql_string.h>
26
25
#include <drizzled/function/math/int.h>
27
26
 
 
27
namespace drizzled
 
28
{
 
29
 
28
30
Item_int_func::~Item_int_func() {}
29
31
 
30
32
double Item_int_func::val_real()
44
46
  str->set_int(nr, unsigned_flag, &my_charset_bin);
45
47
  return str;
46
48
}
 
49
 
 
50
} /* namespace drizzled */