You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: faq/tidb-faq.md
+10
Original file line number
Diff line number
Diff line change
@@ -140,6 +140,16 @@ update mysql.tidb set variable_value='30m' where variable_name='tikv_gc_life_tim
140
140
141
141
Check whether `tidb_disable_txn_auto_retry` is set to `on`. If so, set it to `off`; if it is already `off`, increase the value of `tidb_retry_limit` until the error no longer occurs.
142
142
143
+
#### ERROR 1105 (HY000): client has multi-statement capability disabled
144
+
145
+
This error might occur after upgrading from an earlier version of TiDB. To prevent against SQL injection attacks, TiDB now prevents multiple queries being executed in the same `COM_QUERY` call by default.
146
+
147
+
Check the documentation for your client driver for instructions on how to enable multiple statements. i.e:
0 commit comments