Github user dongjoon-hyun commented on a diff in the pull request:
https://github.com/apache/spark/pull/19447#discussion_r143215289
--- Diff:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/codegen/CodeGenerator.scala
---
@@ -279,11 +279,13 @@ class CodegenContext {
inlineToOuterClass: Boolean = false): String = {
// The number of named constants that can exist in the class is
limited by the Constant Pool
// limit, 65,536. We cannot know how many constants will be inserted
for a class, so we use a
- // threshold of 1600k bytes to determine when a function should be
inlined to a private, nested
- // sub-class.
+ // threshold to determine when a function should be inlined to a
private, nested sub-class
+ val generatedClassLengthThreshold = SparkEnv.get.conf.getInt(
+ SQLConf.GENERATED_CLASS_LENGTH_THRESHOLD.key,
+ SQLConf.GENERATED_CLASS_LENGTH_THRESHOLD.defaultValue.get)
--- End diff --
Could you simplify the above three lines into the following?
```scala
val generatedClassLengthThreshold = SparkEnv.get.conf.get(
SQLConf.GENERATED_CLASS_LENGTH_THRESHOLD)
```
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]