~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/str.h

  • Committer: Nathan Williams
  • Date: 2009-06-05 22:51:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1063.
  • Revision ID: nathanlws@gmail.com-20090605225106-8xrsftpf50tdpumn
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
  { field_derivation= derivation_arg; }
56
56
  bool binary() const { return field_charset == &my_charset_bin; }
57
57
  uint32_t max_display_length() { return field_length; }
58
 
  friend class Create_field;
 
58
  friend class CreateField;
59
59
  my_decimal *val_decimal(my_decimal *);
60
60
  virtual bool str_needs_quotes() { return true; }
61
 
  bool compare_str_field_flags(Create_field *new_field, uint32_t flags);
62
 
  uint32_t is_equal(Create_field *new_field);
 
61
  bool compare_str_field_flags(CreateField *new_field, uint32_t flags);
 
62
  uint32_t is_equal(CreateField *new_field);
63
63
  uint32_t max_data_length() const;
64
64
};
65
65