~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/common.h

  • Committer: Marisa Plumb
  • Date: 2010-11-30 00:28:02 UTC
  • mto: This revision was merged to the branch mainline in revision 1984.
  • Revision ID: marisa.plumb@gmail.com-20101130002802-vapha1qp5giia1s7
edits and basic rewrites to the introduction docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
/* The following are only sent to new clients */
127
127
#define ENUM_FLAG       256             /* field is an enum */
128
128
#define AUTO_INCREMENT_FLAG 512         /* field is a autoincrement field */
129
 
#define FUNCTION_DEFAULT_FLAG   1024            /* Field is a timestamp, uses a function to generate the value. */
 
129
#define TIMESTAMP_FLAG  1024            /* Field is a timestamp */
130
130
#define NO_DEFAULT_VALUE_FLAG 4096      /* Field doesn't have default value */
131
131
#define ON_UPDATE_NOW_FLAG 8192         /* Field is set to NOW on UPDATE */
132
132
#define PART_KEY_FLAG   16384           /* Intern; Part of some key */
190
190
                        DRIZZLE_TYPE_DECIMAL,
191
191
                        DRIZZLE_TYPE_ENUM,
192
192
                        DRIZZLE_TYPE_BLOB,
193
 
                        DRIZZLE_TYPE_TIME,
194
 
                        DRIZZLE_TYPE_BOOLEAN,
195
 
                        DRIZZLE_TYPE_UUID,
196
 
                        DRIZZLE_TYPE_MICROTIME
 
193
                        DRIZZLE_TYPE_MAX=DRIZZLE_TYPE_BLOB
197
194
};
198
 
const int enum_field_types_size= DRIZZLE_TYPE_MICROTIME + 1;
199
195
 
200
196
} /* namespace drizzled */
201
197