Github user cestella commented on a diff in the pull request:
https://github.com/apache/metron/pull/675#discussion_r131150151
--- Diff:
metron-stellar/stellar-common/src/main/java/org/apache/metron/stellar/common/LambdaExpression.java
---
@@ -56,9 +57,9 @@ public Object apply(List<Object> variableArgs) {
lambdaVariables.put(variables.get(i), null);
}
- VariableResolver variableResolver = variable ->
lambdaVariables.getOrDefault(variable
+ VariableResolver variableResolver = new
DefaultVariableResolver(variable -> lambdaVariables.getOrDefault(variable
--- End diff --
Ok, help me out here, can you give me an example of the impact of this
change? Maybe a `MAP()` function and how it acts before the change and how it
would act after the change?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---