~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/decimal.h

  • Committer: Stewart Smith
  • Date: 2011-01-13 06:27:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2083.
  • Revision ID: stewart@flamingspork.com-20110113062734-m3dg1vz2ussyykmy
remove suppressions from valgrind.supp for bug 582486 which seems to have been fixed at some point in the past.

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
 
 
 
54
                uint8_t dec_arg,
 
55
                bool zero_arg,
 
56
                bool unsigned_arg);
56
57
  Field_decimal(uint32_t len_arg,
57
58
                bool maybe_null_arg,
58
59
                const char *field_name_arg,
59
60
                uint8_t dec_arg,
60
61
                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; }
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(type::Time &ltime, type::timestamp_t t_type);
 
71
  int store_time(type::Time *ltime, enum enum_drizzle_timestamp_type t_type);
72
72
  int  store_decimal(const type::Decimal *);
73
73
  double val_real(void);
74
74
  int64_t val_int(void);