File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ Release date: 2017-12-20
9
9
When you need PyMySQL 0.7 behavior, you have to pass ``binary_prefix=True``.
10
10
(#549)
11
11
12
+ * **BACKWARD INCOMPATIBLE** MULTI_STATEMENT client flag is not set by
13
+ default while it was set by default on PyMySQL 0.7. You need to
14
+ pass ``client_flag=CLIENT.MULTI_STATEMENT`` explicitly when you
15
+ want to use multi statement. (#590)
16
+
12
17
* Fixed AuthSwitch packet handling.
13
18
14
19
* Raise OperationalError for MariaDB's constraint error. (#607)
Original file line number Diff line number Diff line change 21
21
PLUGIN_AUTH_LENENC_CLIENT_DATA = 1 << 21
22
22
CAPABILITIES = (
23
23
LONG_PASSWORD | LONG_FLAG | PROTOCOL_41 | TRANSACTIONS
24
- | SECURE_CONNECTION | MULTI_STATEMENTS | MULTI_RESULTS
24
+ | SECURE_CONNECTION | MULTI_RESULTS
25
25
| PLUGIN_AUTH | PLUGIN_AUTH_LENENC_CLIENT_DATA )
26
26
27
27
# Not done yet
You can’t perform that action at this time.
0 commit comments