~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.cc

  • Committer: Brian Aker
  • Date: 2008-07-27 21:07:26 UTC
  • Revision ID: brian@tangent.org-20080727210726-zxwx10dy0w55qswh
Rename of fields (fix issue with string and decimal .h clashing).

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#pragma implementation                          // gcc: Class implementation
23
23
#endif
24
24
 
25
 
#include "drizzle/server/field/blob.h"
 
25
#include <drizzled/field/blob.h>
26
26
 
27
27
#define BLOB_PACK_LENGTH_TO_MAX_LENGH(arg) \
28
28
((ulong) ((1LL << min(arg, 4) * 8) - 1LL))