~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/str.h

  • Committer: Brian Aker
  • Date: 2011-02-12 06:13:32 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212061332-a5dtetim82r6vvls
Merge in session up and out of sql_select.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <drizzled/field.h>
25
25
 
26
 
#include <drizzled/visibility.h>
 
26
#include "drizzled/visibility.h"
27
27
 
28
28
namespace drizzled
29
29
{
65
65
  bool binary() const { return field_charset == &my_charset_bin; }
66
66
  uint32_t max_display_length() { return field_length; }
67
67
  friend class CreateField;
68
 
  type::Decimal *val_decimal(type::Decimal *) const;
 
68
  type::Decimal *val_decimal(type::Decimal *);
69
69
  virtual bool str_needs_quotes() { return true; }
70
70
  uint32_t max_data_length() const;
71
71
};