~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/structs.h

  • Committer: clint at fewbar
  • Date: 2009-07-21 17:13:11 UTC
  • mto: (1093.1.33 captain)
  • mto: This revision was merged to the branch mainline in revision 1105.
  • Revision ID: clint@fewbar.com-20090721171311-gacvpc1piussubxr
refactoring INTERVAL into C++ class

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
  JoinTable *do_insideout_scan;
141
141
} READ_RECORD;
142
142
 
143
 
 
144
 
typedef struct {
145
 
  uint32_t year;
146
 
  uint32_t month;
147
 
  uint32_t day;
148
 
  uint32_t hour;
149
 
  uint64_t minute,second,second_part;
150
 
  bool neg;
151
 
} INTERVAL;
152
 
 
153
143
extern const char *show_comp_option_name[];
154
144
 
155
145
typedef int *(*update_var)(Session *, struct st_mysql_show_var *);