mirror of https://github.com/apache/druid.git
Fix NPE in registeredLookup extractionFn when "optimize" is not provided. (#3064)
This commit is contained in:
parent
2db5f49f35
commit
54139c6815
|
@ -55,7 +55,7 @@ public class RegisteredLookupExtractionFn implements ExtractionFn
|
|||
this.replaceMissingValueWith = replaceMissingValueWith;
|
||||
this.retainMissingValue = retainMissingValue;
|
||||
this.injective = injective;
|
||||
this.optimize = optimize;
|
||||
this.optimize = optimize == null ? true : optimize;
|
||||
this.lookup = lookup;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue