From cd4b6e95124e0f1fb8d51cd21f505b55b95165c6 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Thu, 3 Aug 2017 12:41:40 +0900 Subject: [PATCH] Fix Java program in 005.regression test. The program forgot issue commit and always ended up with ABORT. This does not affect the test result itself, it would be better to finish the test with commit, rather than ABORT. --- src/test/regression/tests/005.jdbc/PrepareThresholdTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/regression/tests/005.jdbc/PrepareThresholdTest.java b/src/test/regression/tests/005.jdbc/PrepareThresholdTest.java index d12ce5c93..43de5556b 100644 --- a/src/test/regression/tests/005.jdbc/PrepareThresholdTest.java +++ b/src/test/regression/tests/005.jdbc/PrepareThresholdTest.java @@ -59,6 +59,7 @@ public class PrepareThresholdTest extends PgpoolTest { } finally { if (rs != null) rs.close(); + connection.commit(); if (pstmt != null) pstmt.close(); } -- 2.39.5