aboutsummaryrefslogtreecommitdiff
path: root/sql/core
diff options
context:
space:
mode:
authorscwf <wangfei1@huawei.com>2015-05-19 17:36:00 -0700
committerMichael Armbrust <michael@databricks.com>2015-05-19 17:36:00 -0700
commit60336e3bc02a2587fdf315f9011bbe7c9d3a58c4 (patch)
tree8ad1577bbb2eb1177eb196727844496c7066d11f /sql/core
parent3860520633770cc5719b2cdebe6dc3608798386d (diff)
downloadspark-60336e3bc02a2587fdf315f9011bbe7c9d3a58c4.tar.gz
spark-60336e3bc02a2587fdf315f9011bbe7c9d3a58c4.tar.bz2
spark-60336e3bc02a2587fdf315f9011bbe7c9d3a58c4.zip
[SPARK-7656] [SQL] use CatalystConf in FunctionRegistry
follow up for #5806 Author: scwf <wangfei1@huawei.com> Closes #6164 from scwf/FunctionRegistry and squashes the following commits: 15e6697 [scwf] use catalogconf in FunctionRegistry
Diffstat (limited to 'sql/core')
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala b/sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala
index 316ef7d588..304e958192 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala
@@ -121,7 +121,7 @@ class SQLContext(@transient val sparkContext: SparkContext)
// TODO how to handle the temp function per user session?
@transient
- protected[sql] lazy val functionRegistry: FunctionRegistry = new SimpleFunctionRegistry(true)
+ protected[sql] lazy val functionRegistry: FunctionRegistry = new SimpleFunctionRegistry(conf)
@transient
protected[sql] lazy val analyzer: Analyzer =