aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src
diff options
context:
space:
mode:
authorDongjoon Hyun <dongjoon@apache.org>2016-07-04 01:57:45 +0800
committerWenchen Fan <wenchen@databricks.com>2016-07-04 01:57:45 +0800
commit88134e736829f5f93a82879c08cb191f175ff8af (patch)
treeb6795f4b148b595c2c1aedc2d61fd9f0bd04c130 /sql/hive/src
parent54b27c1797fcd32b3f3e9d44e1a149ae396a61e6 (diff)
downloadspark-88134e736829f5f93a82879c08cb191f175ff8af.tar.gz
spark-88134e736829f5f93a82879c08cb191f175ff8af.tar.bz2
spark-88134e736829f5f93a82879c08cb191f175ff8af.zip
[SPARK-16288][SQL] Implement inline table generating function
## What changes were proposed in this pull request? This PR implements `inline` table generating function. ## How was this patch tested? Pass the Jenkins tests with new testcase. Author: Dongjoon Hyun <dongjoon@apache.org> Closes #13976 from dongjoon-hyun/SPARK-16288.
Diffstat (limited to 'sql/hive/src')
-rw-r--r--sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionCatalog.scala5
1 files changed, 1 insertions, 4 deletions
diff --git a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionCatalog.scala b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionCatalog.scala
index 53990b8e3b..18b8dafe64 100644
--- a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionCatalog.scala
+++ b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionCatalog.scala
@@ -241,9 +241,6 @@ private[sql] class HiveSessionCatalog(
"hash", "java_method", "histogram_numeric",
"parse_url", "percentile", "percentile_approx", "reflect", "sentences", "stack", "str_to_map",
"xpath", "xpath_double", "xpath_float", "xpath_int", "xpath_long",
- "xpath_number", "xpath_short", "xpath_string",
-
- // table generating function
- "inline"
+ "xpath_number", "xpath_short", "xpath_string"
)
}