git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1416977 13f79535-47bb-0310-9956-ffa450edef68

This commit is contained in:
James Dyer 2012-12-04 15:04:35 +00:00
parent b30ec87d2a
commit 87b1a93a77
2 changed files with 3 additions and 2 deletions

View File

@ -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);

View File

@ -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;