~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/decimal.h

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
                unsigned char null_bit_arg,
52
52
                enum utype unireg_check_arg,
53
53
                const char *field_name_arg,
54
 
                uint8_t dec_arg,
55
 
                bool zero_arg,
56
 
                bool unsigned_arg);
 
54
                uint8_t dec_arg);
 
55
 
57
56
  Field_decimal(uint32_t len_arg,
58
57
                bool maybe_null_arg,
59
58
                const char *field_name_arg,
60
59
                uint8_t dec_arg,
61
60
                bool unsigned_arg);
 
61
 
62
62
  enum_field_types type() const { return DRIZZLE_TYPE_DECIMAL;}
63
63
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_BINARY; }
64
64
  Item_result result_type () const { return DECIMAL_RESULT; }
65
65
  int  reset(void);
66
 
  bool store_value(const my_decimal *decimal_value);
67
 
  void set_value_on_overflow(my_decimal *decimal_value, bool sign);
 
66
  bool store_value(const type::Decimal *decimal_value);
 
67
  void set_value_on_overflow(type::Decimal *decimal_value, bool sign);
68
68
  int  store(const char *to, uint32_t length, const CHARSET_INFO * const charset);
69
69
  int  store(double nr);
70
70
  int  store(int64_t nr, bool unsigned_val);
71
 
  int store_time(DRIZZLE_TIME *ltime, enum enum_drizzle_timestamp_type t_type);
72
 
  int  store_decimal(const my_decimal *);
73
 
  double val_real(void);
74
 
  int64_t val_int(void);
75
 
  my_decimal *val_decimal(my_decimal *);
76
 
  String *val_str(String*, String *);
 
71
  int store_time(type::Time &ltime, type::timestamp_t t_type);
 
72
  int  store_decimal(const type::Decimal *);
 
73
  double val_real(void) const;
 
74
  int64_t val_int(void) const;
 
75
  type::Decimal *val_decimal(type::Decimal *) const;
 
76
  String *val_str(String*, String *) const;
77
77
  int cmp(const unsigned char *, const unsigned char *);
78
78
  void sort_string(unsigned char *buff, uint32_t length);
79
79
  bool zero_pack() const { return 0; }