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
Unfortunately, it crashed in (c *Conn) bindStmtArgs() when I was testing with sysbench. It seems that when repeatedly executing the same statement with the same parameters, the EXECUTE message indicates that there is no need to re-bind the parameters, but the implementation of handleStmtExecute does not save the types and values of the parameters from the previous execution of the statement.
The text was updated successfully, but these errors were encountered:
I have implemented a proxy for forwarding queries using the Server package. The ServerHandler is implemented as follows:
Unfortunately, it crashed in
(c *Conn) bindStmtArgs()
when I was testing with sysbench. It seems that when repeatedly executing the same statement with the same parameters, the EXECUTE message indicates that there is no need to re-bind the parameters, but the implementation of handleStmtExecute does not save the types and values of the parameters from the previous execution of the statement.The text was updated successfully, but these errors were encountered: