~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/options.h

  • Committer: Brian Aker
  • Date: 2011-02-23 01:16:44 UTC
  • mto: (2194.4.1 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2197.
  • Revision ID: brian@tangent.org-20110223011644-l6myuqkbezken6y9
Adding SESSION table and adding back in the mysql interactive flag.

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 | \