package org.geotools.data.oracle; import java.util.HashMap; import org.geotools.jdbc.JDBCDataStoreFactory; import org.geotools.jdbc.JDBCPrimaryKeyFinderOnlineTest; import org.geotools.jdbc.JDBCPrimaryKeyFinderTestSetup; /** * * * @source $URL$ */ public class OraclePrimaryKeyFinderOnlineTest extends JDBCPrimaryKeyFinderOnlineTest { @Override protected JDBCPrimaryKeyFinderTestSetup createTestSetup() { return new OraclePrimaryKeyFinderTestSetup(); } @Override protected HashMap createDataStoreFactoryParams() throws Exception { HashMap params = super.createDataStoreFactoryParams(); params.put(JDBCDataStoreFactory.PK_METADATA_TABLE.key, "GT_PK_METADATA"); return params; } }