Skip to content

Commit 66482e4

Browse files
committed
Fix for Bug#106880 (34022110), Outdated description in connection property 'rewriteBatchedStatements'.
Change-Id: I4bef59fd3a463ca56460a601d33cc6f504f261e7
1 parent c2a106e commit 66482e4

File tree

5 files changed

+173
-171
lines changed

5 files changed

+173
-171
lines changed

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
Version 8.0.30
55

6+
- Fix for Bug#106880 (34022110), Outdated description in connection property 'rewriteBatchedStatements'.
7+
68
- Fix for Bug#34082503, CONTRIBUTING.md contains broken links.
79

810
- Fix for Bug#106779 (33976245), Contribution: Fix typo in PropertyDefinitions.

src/build/java/instrumentation/TranslateExceptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,8 @@ public static void main(String[] args) throws Exception {
300300
catchRuntimeException(clazz, clazz.getDeclaredMethod("toString", new CtClass[] {}), EXCEPTION_INTERCEPTOR_GETTER);
301301
catchRuntimeException(clazz, clazz.getDeclaredMethod("checkBounds", new CtClass[] { CtClass.intType, CtClass.intType }), EXCEPTION_INTERCEPTOR_GETTER);
302302
catchRuntimeException(clazz, clazz.getDeclaredMethod("checkReadOnlySafeStatement", new CtClass[] {}), EXCEPTION_INTERCEPTOR_GETTER);
303-
catchRuntimeException(clazz, clazz.getDeclaredMethod("executeBatchedInserts", new CtClass[] { CtClass.intType }), EXCEPTION_INTERCEPTOR_GETTER);
303+
catchRuntimeException(clazz, clazz.getDeclaredMethod("executeBatchWithMultiValuesClause", new CtClass[] { CtClass.intType }),
304+
EXCEPTION_INTERCEPTOR_GETTER);
304305
catchRuntimeException(clazz, clazz.getDeclaredMethod("executeBatchSerially", new CtClass[] { CtClass.intType }), EXCEPTION_INTERCEPTOR_GETTER);
305306
catchRuntimeException(clazz,
306307
clazz.getDeclaredMethod("executeInternal",

0 commit comments

Comments
 (0)