~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_class.h

  • Committer: Brian Aker
  • Date: 2008-08-09 02:51:06 UTC
  • Revision ID: brian@tangent.org-20080809025106-cnk5oxfjkb882c2r
Full removal of my_bool from central server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2395
2395
  Item_result type;
2396
2396
  bool unsigned_flag;
2397
2397
 
2398
 
  double val_real(my_bool *null_value);
2399
 
  int64_t val_int(my_bool *null_value) const;
2400
 
  String *val_str(my_bool *null_value, String *str, uint decimals);
2401
 
  my_decimal *val_decimal(my_bool *null_value, my_decimal *result);
 
2398
  double val_real(bool *null_value);
 
2399
  int64_t val_int(bool *null_value) const;
 
2400
  String *val_str(bool *null_value, String *str, uint decimals);
 
2401
  my_decimal *val_decimal(bool *null_value, my_decimal *result);
2402
2402
  DTCollation collation;
2403
2403
};
2404
2404