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
The bug manifests as an unexpected NullPointerException when invoking the getMoreResults method. In the provided test case, after executing a batch insert into a table and retrieving the generated keys using getGeneratedKeys(), the method getMoreResults(Statement.KEEP_CURRENT_RESULT) is called on the Statement object. This call unexpectedly results in a NullPointerException. The stack trace indicates that the exception is due to an attempt to invoke isEmpty() on a null object (this.resultBatches).
The bug manifests as an unexpected NullPointerException when invoking the getMoreResults method. In the provided test case, after executing a batch insert into a table and retrieving the generated keys using getGeneratedKeys(), the method getMoreResults(Statement.KEEP_CURRENT_RESULT) is called on the Statement object. This call unexpectedly results in a NullPointerException. The stack trace indicates that the exception is due to an attempt to invoke isEmpty() on a null object (this.resultBatches).
The text was updated successfully, but these errors were encountered: