~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/constants.h

  • Committer: Monty Taylor
  • Date: 2011-03-08 17:33:07 UTC
  • mfrom: (2223.1.5 build)
  • Revision ID: mordred@inaugust.com-20110308173307-m4yvcqms136xs05b
Merge Andrew - Add multi-statements to libdrizzle
Merge Dave - new --slave.max-commit option

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
 */
159
159
typedef enum
160
160
{
161
 
  DRIZZLE_CON_NONE=           0,
162
 
  DRIZZLE_CON_ALLOCATED=      (1 << 0),
163
 
  DRIZZLE_CON_MYSQL=          (1 << 1),
164
 
  DRIZZLE_CON_RAW_PACKET=     (1 << 2),
165
 
  DRIZZLE_CON_RAW_SCRAMBLE=   (1 << 3),
166
 
  DRIZZLE_CON_READY=          (1 << 4),
167
 
  DRIZZLE_CON_NO_RESULT_READ= (1 << 5),
168
 
  DRIZZLE_CON_IO_READY=       (1 << 6),
169
 
  DRIZZLE_CON_LISTEN=         (1 << 7),
170
 
  DRIZZLE_CON_EXPERIMENTAL=   (1 << 8),
171
 
  DRIZZLE_CON_FOUND_ROWS=     (1 << 9),
172
 
  DRIZZLE_CON_ADMIN=          (1 << 10),
173
 
  DRIZZLE_CON_INTERACTIVE=    (1 << 11)
 
161
  DRIZZLE_CON_NONE=             0,
 
162
  DRIZZLE_CON_ALLOCATED=        (1 << 0),
 
163
  DRIZZLE_CON_MYSQL=            (1 << 1),
 
164
  DRIZZLE_CON_RAW_PACKET=       (1 << 2),
 
165
  DRIZZLE_CON_RAW_SCRAMBLE=     (1 << 3),
 
166
  DRIZZLE_CON_READY=            (1 << 4),
 
167
  DRIZZLE_CON_NO_RESULT_READ=   (1 << 5),
 
168
  DRIZZLE_CON_IO_READY=         (1 << 6),
 
169
  DRIZZLE_CON_LISTEN=           (1 << 7),
 
170
  DRIZZLE_CON_EXPERIMENTAL=     (1 << 8),
 
171
  DRIZZLE_CON_FOUND_ROWS=       (1 << 9),
 
172
  DRIZZLE_CON_ADMIN=            (1 << 10),
 
173
  DRIZZLE_CON_INTERACTIVE=      (1 << 11),
 
174
  DRIZZLE_CON_MULTI_STATEMENTS= (1 << 12)
174
175
} drizzle_con_options_t;
175
176
 
176
177
/**