Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.

Commit bb6bc89

Browse files
authored
Merge pull request #196 from mpain/mysql_client_multi_results_bad_constant
Fix for CLIENT_MULTI_RESULTS constant value
2 parents 1e43743 + 630c659 commit bb6bc89

File tree

1 file changed

+1
-1
lines changed
  • mysql-async/src/main/scala/com/github/mauricio/async/db/mysql/util

1 file changed

+1
-1
lines changed

mysql-async/src/main/scala/com/github/mauricio/async/db/mysql/util/MySQLIO.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ object MySQLIO {
2121
final val CLIENT_PROTOCOL_41 = 0x0200
2222
final val CLIENT_CONNECT_WITH_DB = 0x0008
2323
final val CLIENT_TRANSACTIONS = 0x2000
24-
final val CLIENT_MULTI_RESULTS = 0x200000
24+
final val CLIENT_MULTI_RESULTS = 0x20000
2525
final val CLIENT_LONG_FLAG = 0x0001
2626
final val CLIENT_PLUGIN_AUTH = 0x00080000
2727
final val CLIENT_SECURE_CONNECTION = 0x00008000

0 commit comments

Comments
 (0)