~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/options.h

  • Committer: Lee Bieber
  • Date: 2011-01-26 20:17:45 UTC
  • mfrom: (2119.1.2 build)
  • Revision ID: kalebral@gmail.com-20110126201745-fzk1nz9pwljm21v1
Merge Andrew - fix bug 707832: float doesn't support float(n) only float(n,m) 
Merge Andrew - fix bug 707842: drizzle should return the supports transaction capability flag

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
#define CLIENT_PROTOCOL_MYSQL41 512     /* New 4.1 protocol */
86
86
#define CLIENT_SSL              2048    /* Switch to SSL after handshake */
87
87
#define CLIENT_IGNORE_SIGPIPE   4096    /* IGNORE sigpipes */
 
88
#define CLIENT_TRANSACTIONS     8192    /* Support transactions */
88
89
#define CLIENT_RESERVED         16384   /* Old flag for 4.1 protocol  */
89
90
#define CLIENT_SECURE_CONNECTION 32768  /* New 4.1 authentication */
90
91
#define CLIENT_MULTI_STATEMENTS (1UL << 16) /* Enable/disable multi-stmt support */
106
107
                           CLIENT_IGNORE_SPACE | \
107
108
                           CLIENT_SSL | \
108
109
                           CLIENT_IGNORE_SIGPIPE | \
 
110
                           CLIENT_TRANSACTIONS | \
109
111
                           CLIENT_RESERVED | \
110
112
                           CLIENT_SECURE_CONNECTION | \
111
113
                           CLIENT_MULTI_STATEMENTS | \