forked from D-Net/dnet-hadoop
fixed error in the block processor: entities with orderField=null were not considered
This commit is contained in:
parent
a109ebe287
commit
19c3c90d7b
|
@ -131,7 +131,7 @@ public class BlockProcessor {
|
|||
|
||||
WfConfig wf = dedupConf.getWf();
|
||||
final Field fieldsPivot = pivot.values(wf.getOrderField());
|
||||
final String fieldPivot = (fieldsPivot == null) || fieldsPivot.isEmpty() ? null : fieldsPivot.stringValue();
|
||||
final String fieldPivot = (fieldsPivot == null) || fieldsPivot.isEmpty() ? "" : fieldsPivot.stringValue();
|
||||
|
||||
if (fieldPivot != null) {
|
||||
int i = 0;
|
||||
|
|
Loading…
Reference in New Issue