~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/fdecimal.h

  • Committer: Brian Aker
  • Date: 2008-07-31 19:57:34 UTC
  • mfrom: (236.1.27 codestyle)
  • Revision ID: brian@tangent.org-20080731195734-c7cu4gx70xgjr68o
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLE_SERVER_FIELD_NEW_DECIMAL
22
22
#define DRIZZLE_SERVER_FIELD_NEW_DECIMAL
23
23
 
24
 
#include "mysql_priv.h"
 
24
#include <drizzled/mysql_priv.h>
25
25
 
26
26
/* New decimal/numeric field which use fixed point arithmetic */
27
27
class Field_new_decimal :public Field_num {
53
53
  int  store(const char *to, uint length, CHARSET_INFO *charset);
54
54
  int  store(double nr);
55
55
  int  store(int64_t nr, bool unsigned_val);
56
 
  int store_time(MYSQL_TIME *ltime, timestamp_type t_type);
 
56
  int store_time(DRIZZLE_TIME *ltime, timestamp_type t_type);
57
57
  int  store_decimal(const my_decimal *);
58
58
  double val_real(void);
59
59
  int64_t val_int(void);