From b484ee1f229fa2732251a1e0682000becaefcca6 Mon Sep 17 00:00:00 2001 From: Mark Struberg Date: Thu, 14 Feb 2019 10:03:04 +0100 Subject: [PATCH] add missing delegate method for Java8 support --- .../openjpa/lib/jdbc/DelegatingPreparedStatement.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openjpa-lib/src/main/java/org/apache/openjpa/lib/jdbc/DelegatingPreparedStatement.java b/openjpa-lib/src/main/java/org/apache/openjpa/lib/jdbc/DelegatingPreparedStatement.java index 968dc9463..728197d3e 100644 --- a/openjpa-lib/src/main/java/org/apache/openjpa/lib/jdbc/DelegatingPreparedStatement.java +++ b/openjpa-lib/src/main/java/org/apache/openjpa/lib/jdbc/DelegatingPreparedStatement.java @@ -59,7 +59,7 @@ public class DelegatingPreparedStatement private /*final*/ Connection _conn; public DelegatingPreparedStatement(PreparedStatement stmnt, Connection conn) { - initialize(stmnt, conn); + initialize(stmnt, conn); } public void initialize(PreparedStatement stmnt, Connection conn) { @@ -664,11 +664,11 @@ public class DelegatingPreparedStatement @Override public boolean isCloseOnCompletion() throws SQLException{ - throw new UnsupportedOperationException(); + return _stmnt.isCloseOnCompletion(); } @Override public void closeOnCompletion() throws SQLException{ - throw new UnsupportedOperationException(); + _stmnt.closeOnCompletion(); } }