~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/decimal.cc

  • Committer: Olaf van der Spek
  • Date: 2011-07-05 13:16:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2384.
  • Revision ID: olafvdspek@gmail.com-20110705131634-f7g1fjro5slibmdj
Add data_ref.h
Use str_ref for append_identifier

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>
137
137
 
138
138
 
139
139
int Field_decimal::store(const char *from, uint32_t length,
140
 
                         const CHARSET_INFO * const charset_arg)
 
140
                         const charset_info_st * const charset_arg)
141
141
{
142
142
  int err;
143
143
  type::Decimal decimal_value;
260
260
}
261
261
 
262
262
 
263
 
double Field_decimal::val_real(void)
 
263
double Field_decimal::val_real(void) const
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)
 
276
int64_t Field_decimal::val_int(void) const
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)
 
289
type::Decimal* Field_decimal::val_decimal(type::Decimal *decimal_value) const
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,
300
 
                               String *)
 
299
String *Field_decimal::val_str(String *val_buffer, String *) const
301
300
{
302
301
  type::Decimal decimal_value;
303
302
 
315
314
}
316
315
 
317
316
 
318
 
void Field_decimal::sort_string(unsigned char *buff,
319
 
                                uint32_t )
 
317
void Field_decimal::sort_string(unsigned char *buff, uint32_t)
320
318
{
321
319
  memcpy(buff, ptr, bin_size);
322
320
}
323
321
 
324
 
 
325
 
void Field_decimal::sql_type(String &str) const
326
 
{
327
 
  const CHARSET_INFO * const cs= str.charset();
328
 
  str.length(cs->cset->snprintf(cs, (char*) str.ptr(), str.alloced_length(),
329
 
                                "decimal(%d,%d)", precision, (int)dec));
330
 
}
331
 
 
332
 
 
333
322
/**
334
323
  Returns the number of bytes field uses in row-based replication
335
324
  row packed size.