~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/field/blob.cc

Added Makefile.am to server/field and build as libtool noinst lib.
Moved field headers to include/field to work around include path collisions
with string.h and decimal.h.

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 "blob.h"
 
25
#include "field/blob.h"
26
26
 
27
27
#define BLOB_PACK_LENGTH_TO_MAX_LENGH(arg) \
28
28
((ulong) ((1LL << min(arg, 4) * 8) - 1LL))