~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/options.h

Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
#define CLIENT_ODBC             64      /* Odbc client */
81
81
#define CLIENT_IGNORE_SPACE     256     /* Ignore spaces before '(' */
82
82
#define CLIENT_PROTOCOL_MYSQL41 512     /* New 4.1 protocol */
 
83
#define CLIENT_INTERACTIVE      1024
83
84
#define CLIENT_SSL              2048    /* Switch to SSL after handshake */
84
85
#define CLIENT_IGNORE_SIGPIPE   4096    /* IGNORE sigpipes */
85
86
#define CLIENT_TRANSACTIONS     8192    /* Support transactions */
102
103
                           CLIENT_COMPRESS | \
103
104
                           CLIENT_ODBC | \
104
105
                           CLIENT_IGNORE_SPACE | \
 
106
                           CLIENT_INTERACTIVE | \
105
107
                           CLIENT_SSL | \
106
108
                           CLIENT_IGNORE_SIGPIPE | \
107
109
                           CLIENT_TRANSACTIONS | \