Github user srowen commented on a diff in the pull request:
https://github.com/apache/spark/pull/3206#discussion_r20140846
--- Diff:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala
---
@@ -39,8 +39,7 @@ class Analyzer(catalog: Catalog, registry:
FunctionRegistry, caseSensitive: Bool
val resolver = if (caseSensitive) caseSensitiveResolution else
caseInsensitiveResolution
- // TODO: pass this in as a parameter.
- val fixedPoint = FixedPoint(100)
+ val fixedPoint =
Option(System.getProperty("spark.catalyst.fixedPoint")).getOrElse("100").toInt
--- End diff --
I don't know that this was the intent of the TODO. A system property is not
a parameter. This also changes the type from `FixedPoint` to an int.
---
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.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]