Skip to content

Commit

Permalink
Fix for Bug#106880 (34022110), Outdated description in connection pro…
Browse files Browse the repository at this point in the history
…perty 'rewriteBatchedStatements'.

Change-Id: I4bef59fd3a463ca56460a601d33cc6f504f261e7
  • Loading branch information
fjssilva committed May 5, 2022
1 parent c2a106e commit 66482e4
Show file tree
Hide file tree
Showing 5 changed files with 173 additions and 171 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

Version 8.0.30

- Fix for Bug#106880 (34022110), Outdated description in connection property 'rewriteBatchedStatements'.

- Fix for Bug#34082503, CONTRIBUTING.md contains broken links.

- Fix for Bug#106779 (33976245), Contribution: Fix typo in PropertyDefinitions.
Expand Down
3 changes: 2 additions & 1 deletion src/build/java/instrumentation/TranslateExceptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,8 @@ public static void main(String[] args) throws Exception {
catchRuntimeException(clazz, clazz.getDeclaredMethod("toString", new CtClass[] {}), EXCEPTION_INTERCEPTOR_GETTER);
catchRuntimeException(clazz, clazz.getDeclaredMethod("checkBounds", new CtClass[] { CtClass.intType, CtClass.intType }), EXCEPTION_INTERCEPTOR_GETTER);
catchRuntimeException(clazz, clazz.getDeclaredMethod("checkReadOnlySafeStatement", new CtClass[] {}), EXCEPTION_INTERCEPTOR_GETTER);
catchRuntimeException(clazz, clazz.getDeclaredMethod("executeBatchedInserts", new CtClass[] { CtClass.intType }), EXCEPTION_INTERCEPTOR_GETTER);
catchRuntimeException(clazz, clazz.getDeclaredMethod("executeBatchWithMultiValuesClause", new CtClass[] { CtClass.intType }),
EXCEPTION_INTERCEPTOR_GETTER);
catchRuntimeException(clazz, clazz.getDeclaredMethod("executeBatchSerially", new CtClass[] { CtClass.intType }), EXCEPTION_INTERCEPTOR_GETTER);
catchRuntimeException(clazz,
clazz.getDeclaredMethod("executeInternal",
Expand Down
Loading

0 comments on commit 66482e4

Please sign in to comment.