~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/structs.h

  • Committer: Monty Taylor
  • Date: 2008-09-22 23:10:15 UTC
  • mto: This revision was merged to the branch mainline in revision 417.
  • Revision ID: monty@inaugust.com-20080922231015-opvz2pv1hs340y2f
Remove typedef enum enum_drizzle_timestamp_type timestamp_type;

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
} READ_RECORD;
134
134
 
135
135
 
136
 
/*
137
 
  Originally MySQL used DRIZZLE_TIME structure inside server only, but since
138
 
  4.1 it's exported to user in the new client API. Define aliases for
139
 
  new names to keep existing code simple.
140
 
*/
141
 
 
142
 
typedef enum enum_drizzle_timestamp_type timestamp_type;
143
 
 
144
 
 
145
136
typedef struct {
146
137
  ulong year,month,day,hour;
147
138
  uint64_t minute,second,second_part;