~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/str.h

Merge in additional test case fixes.

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