~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/str.h

  • Committer: Brian Aker
  • Date: 2011-01-17 04:15:23 UTC
  • mto: (2088.1.3 merge)
  • mto: This revision was merged to the branch mainline in revision 2089.
  • Revision ID: brian@gir-3-20110117041523-o9ex94kfz1a6iqyw
Modify TableIdentifier to fit with the rest of the identifiers.

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
};