~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/decimal.h

  • Committer: Stewart Smith
  • Date: 2011-02-10 01:03:48 UTC
  • mto: (2154.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2155.
  • Revision ID: stewart@flamingspork.com-20110210010348-5l0zh0akjahvx3vi
fix Session::tx_isolation to be getTxIsolation to follow coding style, but look weird

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
  int  store(int64_t nr, bool unsigned_val);
71
71
  int store_time(type::Time &ltime, type::timestamp_t t_type);
72
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;
 
73
  double val_real(void);
 
74
  int64_t val_int(void);
 
75
  type::Decimal *val_decimal(type::Decimal *);
 
76
  String *val_str(String*, String *);
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; }