Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.2, Nightly Builds
-
None
Description
If an error is thrown when executing a Batch (via the QueryRunner#batch method), the rethrow method incorrectly transform the batch parameters in to a String:
instead of
msg.append(Arrays.asList(params));
the following should be used:
msg.append(Arrays.deepToString(params));
This would allow the batch parameters to be correctly displayed, instead of having [java.lang.Object[]@8954, java.lang.Object[]@78946]