~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.h

  • Committer: Andrew Hutchings
  • Date: 2011-01-23 21:32:31 UTC
  • mto: (2108.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2109.
  • Revision ID: andrew@linuxjedi.co.uk-20110123213231-dp2r4enepa9k4g36
Convert all unit tests to boost::test
Add pandora support for boost::test
Remove pandora support for gtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
  double val_real(void);
77
77
  int64_t val_int(void);
78
78
  String *val_str(String*,String *);
79
 
  my_decimal *val_decimal(my_decimal *);
 
79
  type::Decimal *val_decimal(type::Decimal *);
80
80
  int cmp_max(const unsigned char *, const unsigned char *, uint32_t max_length);
81
81
  int cmp(const unsigned char *a,const unsigned char *b)
82
82
    { return cmp_max(a, b, UINT32_MAX); }