~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/size.cc

  • Committer: Brian Aker
  • Date: 2011-02-04 09:29:39 UTC
  • mfrom: (2139.3.6 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2144.
  • Revision ID: brian@tangent.org-20110204092939-nlwrimamw0fxxhgl
Main bit of this patch is that Inno now just uses the identifier so we only
have one spot to make changes for paths.

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/size.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
 
157
157
}
158
158
 
159
159
 
160
 
double Size::val_real(void) const
 
160
double Size::val_real(void)
161
161
{
162
162
  int64_t j;
163
163
 
169
169
}
170
170
 
171
171
 
172
 
int64_t Size::val_int(void) const
 
172
int64_t Size::val_int(void)
173
173
{
174
174
  int64_t j;
175
175
 
181
181
}
182
182
 
183
183
 
184
 
String *Size::val_str(String *val_buffer, String *) const
 
184
String *Size::val_str(String *val_buffer, String *)
185
185
{
186
186
  const CHARSET_INFO * const cs= &my_charset_bin;
187
187
  uint32_t length;