~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/size.cc

  • Committer: Brian Aker
  • Date: 2011-02-20 21:00:32 UTC
  • mfrom: (2181.2.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110220210032-fc9g8qugt0n1yjr6
Brian Aker 2011-02-20 Merge in additional header bits for strerror_r
Brian Aker 2011-02-20 Create CONST on additional Field methods.
Brian Aker 2011-02-19 Further commit const on field.
Brian Aker 2011-02-18 This fixes DEBUG based compiles.
Brian Aker 2011-02-18 Protect all of the val_* methods from modification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
157
157
}
158
158
 
159
159
 
160
 
double Size::val_real(void)
 
160
double Size::val_real(void) const
161
161
{
162
162
  int64_t j;
163
163
 
169
169
}
170
170
 
171
171
 
172
 
int64_t Size::val_int(void)
 
172
int64_t Size::val_int(void) const
173
173
{
174
174
  int64_t j;
175
175
 
181
181
}
182
182
 
183
183
 
184
 
String *Size::val_str(String *val_buffer, String *)
 
184
String *Size::val_str(String *val_buffer, String *) const
185
185
{
186
186
  const CHARSET_INFO * const cs= &my_charset_bin;
187
187
  uint32_t length;