2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-16 01:22:20 +00:00

Added missing flag in handshake for MariaDB

This commit is contained in:
ruben
2020-03-13 21:37:51 +00:00
parent 242d0cd48a
commit ca2ef34202
2 changed files with 6 additions and 5 deletions

View File

@@ -307,7 +307,7 @@ constexpr std::uint32_t hanshake_caps =
CLIENT_IGNORE_SIGPIPE |
CLIENT_TRANSACTIONS |
CLIENT_RESERVED | // old flag, but set in this frame
CLIENT_RESERVED2 | // old flag, but set in this frame
CLIENT_SECURE_CONNECTION | // old flag, but set in this frame
CLIENT_MULTI_STATEMENTS |
CLIENT_MULTI_RESULTS |
CLIENT_PS_MULTI_RESULTS |
@@ -358,7 +358,7 @@ constexpr std::uint32_t handshake_response_caps =
CLIENT_PROTOCOL_41 |
CLIENT_INTERACTIVE |
CLIENT_TRANSACTIONS |
CLIENT_RESERVED2 |
CLIENT_SECURE_CONNECTION |
CLIENT_MULTI_STATEMENTS |
CLIENT_MULTI_RESULTS |
CLIENT_PS_MULTI_RESULTS |