From badcf47af8bf85d13fe3019648635d5f274b91ec Mon Sep 17 00:00:00 2001 From: Mark Struberg Date: Mon, 30 Apr 2012 08:09:33 +0000 Subject: [PATCH] OPENJPA-2179 remove unnecessary config params We still need the cache params, otherwise we will not see the underlying problem. git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1332095 13f79535-47bb-0310-9956-ffa450edef68 --- .../openjpa/jdbc/oracle/TestOracleDistinctJoin.java | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/jdbc/oracle/TestOracleDistinctJoin.java b/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/jdbc/oracle/TestOracleDistinctJoin.java index cc12c7342..804b018dd 100644 --- a/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/jdbc/oracle/TestOracleDistinctJoin.java +++ b/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/jdbc/oracle/TestOracleDistinctJoin.java @@ -82,16 +82,11 @@ public class TestOracleDistinctJoin extends AbstractPersistenceTestCase { OpenJPAEntityManagerFactorySPI emf = createEMF(Course.class, Lecturer.class, SomeEmbeddable.class, "openjpa.jdbc.SchemaFactory", "native", - "openjpa.jdbc.DBDictionary", "org.apache.openjpa.jdbc.sql.OracleDictionary", "openjpa.jdbc.SynchronizeMappings", "buildSchema(ForeignKeys=true)", "openjpa.jdbc.QuerySQLCache", "false", - "openjpa.DataCache", "false", - "openjpa.PostLoadOnMerge", "true", - "openjpa.DetachState", "loaded(DetachedStateField=true)", - "openjpa.Compatibility", "IgnoreDetachedStateFieldForProxySerialization=true", - "openjpa.jdbc.MappingDefaults", "ForeignKeyDeleteAction=restrict, JoinForeignKeyDeleteAction=restrict"); + "openjpa.DataCache", "false" ); - JDBCConfiguration conf = ((JDBCConfiguration) emf.getConfiguration()); + JDBCConfiguration conf = ((JDBCConfiguration) emf.getConfiguration()); DBDictionary dict = conf.getDBDictionaryInstance(); if (skipTest(dict)) {