~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.h

  • Committer: Brian Aker
  • Date: 2009-12-26 18:33:33 UTC
  • mfrom: (1252.1.1 bugs)
  • Revision ID: brian@gaz-20091226183333-pel3p35bk7r82kl1
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <drizzled/field/str.h>
25
25
 
 
26
#include "drizzled/global_charset_info.h"
 
27
 
26
28
#include <string>
27
29
 
28
30
/**
216
218
  bool has_charset(void) const
217
219
  { return charset() == &my_charset_bin ? false : true; }
218
220
  uint32_t max_display_length();
219
 
  uint32_t is_equal(CreateField *new_field);
220
 
 
221
 
private:
222
 
  int do_save_field_metadata(unsigned char *first_byte);
223
221
};
224
222
 
225
223
#endif /* DRIZZLED_FIELD_BLOB_H */