~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/fdecimal.h

  • Committer: Stewart Smith
  • Date: 2008-08-02 07:12:36 UTC
  • mfrom: (258 drizzle)
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080802071236-kbcozl5zm23j6mkn
mergeĀ fromĀ mainline

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 {
44
44
  Field_new_decimal(uint32_t len_arg, bool maybe_null_arg,
45
45
                    const char *field_name_arg, uint8_t dec_arg,
46
46
                    bool unsigned_arg);
47
 
  enum_field_types type() const { return MYSQL_TYPE_NEWDECIMAL;}
 
47
  enum_field_types type() const { return DRIZZLE_TYPE_NEWDECIMAL;}
48
48
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_BINARY; }
49
49
  Item_result result_type () const { return DECIMAL_RESULT; }
50
50
  int  reset(void);
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);