~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/int64.cc

  • Committer: Brian Aker
  • Date: 2011-02-12 06:56:00 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212065600-m6c68fybw51rflhj
Further strip out includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 */
20
20
 
21
21
 
22
 
#include <config.h>
 
22
#include "config.h"
23
23
#include <drizzled/field/int64.h>
24
24
#include <drizzled/error.h>
25
25
#include <drizzled/table.h>
26
26
#include <drizzled/session.h>
27
 
#include <drizzled/internal/my_sys.h>
 
27
#include "drizzled/internal/my_sys.h"
28
28
 
29
29
#include <math.h>
30
30
 
121
121
}
122
122
 
123
123
 
124
 
double Int64::val_real(void) const
 
124
double Int64::val_real(void)
125
125
{
126
126
  int64_t j;
127
127
 
134
134
}
135
135
 
136
136
 
137
 
int64_t Int64::val_int(void) const
 
137
int64_t Int64::val_int(void)
138
138
{
139
139
  int64_t j;
140
140
 
146
146
}
147
147
 
148
148
 
149
 
String *Int64::val_str(String *val_buffer, String *) const
 
149
String *Int64::val_str(String *val_buffer, String *)
150
150
{
151
151
  const CHARSET_INFO * const cs= &my_charset_bin;
152
152
  uint32_t length;