Functionality added or changed:
Added configuration option
noAccessToProcedureBodies
which will cause the driver to create basic parameter metadata forCallableStatements
when the user does not have access to procedure bodies usingSHOW CREATE PROCEDURE
or selecting frommysql.proc
instead of throwing an exception. The default value for this option isfalse
Bugs fixed:
Fixed
Statement.cancel()
causesNullPointerException
if underlying connection has been closed due to server failure. (Bug#20650)If the connection to the server has been closed due to a server failure, then the cleanup process will call
Statement.cancel()
, triggering aNullPointerException
, even though there is no active connection. (Bug#20650)