~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/boolean.h

  • Committer: Stewart Smith
  • Date: 2011-02-10 00:46:02 UTC
  • mto: (2154.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2155.
  • Revision ID: stewart@flamingspork.com-20110210004602-9hev3ooklc9f2yti
switch get_sql_command to getSqlCommand

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
  int store(int64_t nr, bool unsigned_val);
53
53
  int store_decimal(const drizzled::type::Decimal*);
54
54
 
55
 
  String *val_str(String*,String *) const;
56
 
  double val_real() const;
57
 
  int64_t val_int() const;
58
 
  type::Decimal *val_decimal(type::Decimal *) const;
 
55
  String *val_str(String*,String *);
 
56
  double val_real();
 
57
  int64_t val_int();
 
58
  type::Decimal *val_decimal(type::Decimal *);
59
59
 
60
60
  void sql_type(drizzled::String&) const;
61
61