~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/decimal.cc

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

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/decimal.h>
24
24
#include <drizzled/error.h>
25
25
#include <drizzled/table.h>
260
260
}
261
261
 
262
262
 
263
 
double Field_decimal::val_real(void) const
 
263
double Field_decimal::val_real(void)
264
264
{
265
265
  double dbl;
266
266
  type::Decimal decimal_value;
273
273
}
274
274
 
275
275
 
276
 
int64_t Field_decimal::val_int(void) const
 
276
int64_t Field_decimal::val_int(void)
277
277
{
278
278
  int64_t i;
279
279
  type::Decimal decimal_value;
286
286
}
287
287
 
288
288
 
289
 
type::Decimal* Field_decimal::val_decimal(type::Decimal *decimal_value) const
 
289
type::Decimal* Field_decimal::val_decimal(type::Decimal *decimal_value)
290
290
{
291
291
  ASSERT_COLUMN_MARKED_FOR_READ;
292
292
 
296
296
}
297
297
 
298
298
 
299
 
String *Field_decimal::val_str(String *val_buffer, String *) const
 
299
String *Field_decimal::val_str(String *val_buffer,
 
300
                               String *)
300
301
{
301
302
  type::Decimal decimal_value;
302
303