Github user arina-ielchiieva commented on a diff in the pull request:
https://github.com/apache/drill/pull/1139#discussion_r171307607
--- Diff:
logical/src/main/java/org/apache/drill/common/config/LogicalPlanPersistence.java
---
@@ -52,6 +53,7 @@ public LogicalPlanPersistence(DrillConfig conf,
ScanResult scanResult) {
mapper.configure(Feature.ALLOW_UNQUOTED_FIELD_NAMES, true);
mapper.configure(JsonGenerator.Feature.QUOTE_FIELD_NAMES, true);
mapper.configure(Feature.ALLOW_COMMENTS, true);
+ mapper.setFilterProvider(new
SimpleFilterProvider().setFailOnUnknownId(false));
--- End diff --
Will filtering passwords work when profiles are sent between nodes (i.e.
when we have several major fragments)?
---