mirror of https://github.com/apache/lucene.git
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1416977 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b30ec87d2a
commit
87b1a93a77
|
@ -58,7 +58,9 @@ public abstract class AbstractDIHJdbcTestCase extends
|
|||
try {
|
||||
Class.forName("org.hsqldb.jdbcDriver").newInstance();
|
||||
String oldProp = System.getProperty("derby.stream.error.field");
|
||||
System.setProperty("derby.stream.error.field", "DerbyUtil.DEV_NULL");
|
||||
System
|
||||
.setProperty("derby.stream.error.field",
|
||||
"org.apache.solr.handler.dataimport.AbstractDIHJdbcTestCase$DerbyUtil.DEV_NULL");
|
||||
Class.forName("org.apache.derby.jdbc.EmbeddedDriver").newInstance();
|
||||
if (oldProp != null) {
|
||||
System.setProperty("derby.stream.error.field", oldProp);
|
||||
|
|
|
@ -25,7 +25,6 @@ import org.junit.Test;
|
|||
/**
|
||||
* Test with various combinations of parameters, child entites, transformers.
|
||||
*/
|
||||
@Ignore
|
||||
public class TestSqlEntityProcessorDelta extends AbstractSqlEntityProcessorTestCase {
|
||||
private boolean delta = false;
|
||||
private boolean useParentDeltaQueryParam = false;
|
||||
|
|
Loading…
Reference in New Issue