~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/common.h

  • Committer: Brian Aker
  • Date: 2010-11-30 00:29:39 UTC
  • mto: (1965.2.2 build)
  • mto: This revision was merged to the branch mainline in revision 1966.
  • Revision ID: brian@tangent.org-20101130002939-8bzz3xpa0aapbq2w
Fix sleep() so that a kill command will kill it.

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_UUID
 
193
                        DRIZZLE_TYPE_MAX=DRIZZLE_TYPE_BLOB
194
194
};
195
 
const int enum_field_types_size= DRIZZLE_TYPE_UUID + 1;
196
195
 
197
196
} /* namespace drizzled */
198
197