~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/drizzle.h

  • Committer: Brian Aker
  • Date: 2008-07-28 18:01:38 UTC
  • Revision ID: brian@tangent.org-20080728180138-q2pxlq0qiapvqsdn
Remove YEAR field type

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
#define IS_PRI_KEY(n)  ((n) & PRI_KEY_FLAG)
57
57
#define IS_NOT_NULL(n)  ((n) & NOT_NULL_FLAG)
58
58
#define IS_BLOB(n)  ((n) & BLOB_FLAG)
59
 
#define IS_NUM(t)  ((t) <= DRIZZLE_TYPE_LONGLONG || (t) == DRIZZLE_TYPE_YEAR || (t) == DRIZZLE_TYPE_NEWDECIMAL)
 
59
#define IS_NUM(t)  ((t) <= DRIZZLE_TYPE_LONGLONG || (t) == DRIZZLE_TYPE_NEWDECIMAL)
60
60
#define IS_NUM_FIELD(f)   ((f)->flags & NUM_FLAG)
61
 
#define INTERNAL_NUM_FIELD(f) (((f)->type <= DRIZZLE_TYPE_LONGLONG && ((f)->type != DRIZZLE_TYPE_TIMESTAMP || (f)->length == 14 || (f)->length == 8)) || (f)->type == DRIZZLE_TYPE_YEAR)
 
61
#define INTERNAL_NUM_FIELD(f) (((f)->type <= DRIZZLE_TYPE_LONGLONG && ((f)->type != DRIZZLE_TYPE_TIMESTAMP || (f)->length == 14 || (f)->length == 8)))
62
62
#define IS_LONGDATA(t) ((t) >= DRIZZLE_TYPE_TINY_BLOB && (t) <= DRIZZLE_TYPE_STRING)
63
63
 
64
64