~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/structs.h

  • Committer: Brian Aker
  • Date: 2009-03-01 03:29:52 UTC
  • mfrom: (907.1.6 trunk-with-temporal)
  • Revision ID: brian@tangent.org-20090301032952-y210opnqxsfyhcla
Merge Jay's temporal

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 *);