dongjoon-hyun commented on a change in pull request #27815: [SPARK-31088][SQL]
Add back HiveContext and createExternalTable
URL: https://github.com/apache/spark/pull/27815#discussion_r391189171
##########
File path: python/pyspark/sql/context.py
##########
@@ -463,6 +481,53 @@ def streams(self):
return StreamingQueryManager(self._ssql_ctx.streams())
+class HiveContext(SQLContext):
+ """A variant of Spark SQL that integrates with data stored in Hive.
+
+ Configuration for Hive is read from ``hive-site.xml`` on the classpath.
+ It supports running both SQL and HiveQL commands.
+
+ :param sparkContext: The SparkContext to wrap.
+ :param jhiveContext: An optional JVM Scala HiveContext. If set, we do not
instantiate a new
+ :class:`HiveContext` in the JVM, instead we make all calls to this
object.
+
+ .. note:: Deprecated in 2.0.0. Use
SparkSession.builder.enableHiveSupport().getOrCreate().
Review comment:
`class HiveContext(SQLContext)` itself is not a simple alias. You know that.
This is a whole new layer in Spark 1.6.x age.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]