Github user sudheeshkatkam commented on a diff in the pull request:
https://github.com/apache/drill/pull/552#discussion_r71925119
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/planner/physical/PlannerSettings.java
---
@@ -216,6 +218,10 @@ public boolean isTypeInferenceEnabled() {
return options.getOption(TYPE_INFERENCE);
}
+ public long getInSubqueryThreshold() {
+ return
options.getOption(IN_SUBQUERY_THRESHOLD.getOptionName()).num_val;
--- End diff --
Change the declaration to: `public static final LongValidator
IN_SUBQUERY_THRESHOLD ...`
and here, `return options.getOption(IN_SUBQUERY_THRESHOLD;`
---
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.
---