You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by st...@apache.org on 2021/04/01 15:03:18 UTC

[openjpa] 01/04: Also disable for Oracle

This is an automated email from the ASF dual-hosted git repository.

struberg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git

commit 93fe0643006b53d23e10931aabcdda4bf3df6ee2
Author: Mark Struberg <st...@apache.org>
AuthorDate: Thu Apr 1 16:45:37 2021 +0200

    Also disable for Oracle
    
    Oracle also closes the JDBC Stream.
    Most likely all other DBs now do it as well.
---
 .../test/java/org/apache/openjpa/jdbc/meta/strats/AbstractLobTest.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/jdbc/meta/strats/AbstractLobTest.java b/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/jdbc/meta/strats/AbstractLobTest.java
index 7653463..95ef6d6 100644
--- a/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/jdbc/meta/strats/AbstractLobTest.java
+++ b/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/jdbc/meta/strats/AbstractLobTest.java
@@ -50,8 +50,7 @@ public abstract class AbstractLobTest extends SingleEMFTestCase {
     protected static boolean firstTestExecuted;
 
     protected List<Class<?>> supportedDatabases =
-        new ArrayList<>
-            (Arrays.asList(MySQLDictionary.class, OracleDictionary.class, DB2Dictionary.class));
+        new ArrayList<>(Arrays.asList(MySQLDictionary.class, DB2Dictionary.class));
 
     @Override
     public void setUp() throws Exception {