~jaypipes/drizzle/split-xa-resource-manager

« back to all changes in this revision

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

  • Committer: Jay Pipes
  • Date: 2010-02-06 01:51:20 UTC
  • mfrom: (1273.1.10 build)
  • Revision ID: jpipes@serialcoder-20100206015120-as4vb638inbzrb59
Merge trunk changes and resolve conflicts

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 */