~xnox/ubuntu/saucy/drizzle/merge

« back to all changes in this revision

Viewing changes to drizzled/field/str.h

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-01-01 13:55:03 UTC
  • Revision ID: james.westby@ubuntu.com-20110101135503-x2ub1akxoisgwi6z
Tags: 2010.12.06-0ubuntu4
* Fixed missing build depends.
* Added Lee to uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
  using Field::store;
49
49
  int  store(double nr);
50
50
  int  store(int64_t nr, bool unsigned_val)=0;
51
 
  int  store_decimal(const my_decimal *);
 
51
  int  store_decimal(const type::Decimal *);
52
52
  int  store(const char *to,uint32_t length, const CHARSET_INFO * const cs)=0;
53
53
 
54
54
  uint32_t size_of() const { return sizeof(*this); }
61
61
  bool binary() const { return field_charset == &my_charset_bin; }
62
62
  uint32_t max_display_length() { return field_length; }
63
63
  friend class CreateField;
64
 
  my_decimal *val_decimal(my_decimal *);
 
64
  type::Decimal *val_decimal(type::Decimal *);
65
65
  virtual bool str_needs_quotes() { return true; }
66
66
  uint32_t max_data_length() const;
67
67
};