~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/structs.h

  • Committer: Jay Pipes
  • Date: 2009-02-28 17:49:22 UTC
  • mto: (910.2.6 mordred-noatomics)
  • mto: This revision was merged to the branch mainline in revision 908.
  • Revision ID: jpipes@serialcoder-20090228174922-jczgt4d0662fqmnf
Merging in old r902 temporal changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
class Field;
32
32
typedef struct st_io_cache IO_CACHE;
33
33
 
34
 
typedef struct st_date_time_format {
35
 
  unsigned char positions[8];
36
 
  char  time_separator;                 /* Separator between hour and minute */
37
 
  uint32_t flag;                                /* For future */
38
 
  LEX_STRING format;
39
 
} DATE_TIME_FORMAT;
40
 
 
41
 
 
42
34
typedef struct st_keyfile_info {        /* used with ha_info() */
43
35
  unsigned char ref[MAX_REFLENGTH];             /* Pointer to current row */
44
36
  unsigned char dupp_ref[MAX_REFLENGTH];        /* Pointer to dupp row */
150
142
  bool neg;
151
143
} INTERVAL;
152
144
 
153
 
 
154
 
typedef struct st_known_date_time_format {
155
 
  const char *format_name;
156
 
  const char *date_format;
157
 
  const char *datetime_format;
158
 
  const char *time_format;
159
 
} KNOWN_DATE_TIME_FORMAT;
160
 
 
161
 
 
162
145
extern const char *show_comp_option_name[];
163
146
 
164
147
typedef int *(*update_var)(Session *, struct st_mysql_show_var *);