aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/sql/dataframe.py
diff options
context:
space:
mode:
authorTathagata Das <tathagata.das1565@gmail.com>2016-06-15 10:46:02 -0700
committerShixiong Zhu <shixiong@databricks.com>2016-06-15 10:46:07 -0700
commit9a5071996b968148f6b9aba12e0d3fe888d9acd8 (patch)
tree1f39691de83edb31dca56d6cd460261070504248 /python/pyspark/sql/dataframe.py
parentd30b7e6696e20f1014c7f26aadbc051da0fac578 (diff)
downloadspark-9a5071996b968148f6b9aba12e0d3fe888d9acd8.tar.gz
spark-9a5071996b968148f6b9aba12e0d3fe888d9acd8.tar.bz2
spark-9a5071996b968148f6b9aba12e0d3fe888d9acd8.zip
[SPARK-15953][WIP][STREAMING] Renamed ContinuousQuery to StreamingQuery
Renamed for simplicity, so that its obvious that its related to streaming. Existing unit tests. Author: Tathagata Das <tathagata.das1565@gmail.com> Closes #13673 from tdas/SPARK-15953.
Diffstat (limited to 'python/pyspark/sql/dataframe.py')
-rw-r--r--python/pyspark/sql/dataframe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pyspark/sql/dataframe.py b/python/pyspark/sql/dataframe.py
index 0126faf574..acf9d08b23 100644
--- a/python/pyspark/sql/dataframe.py
+++ b/python/pyspark/sql/dataframe.py
@@ -257,7 +257,7 @@ class DataFrame(object):
def isStreaming(self):
"""Returns true if this :class:`Dataset` contains one or more sources that continuously
return data as it arrives. A :class:`Dataset` that reads data from a streaming source
- must be executed as a :class:`ContinuousQuery` using the :func:`startStream` method in
+ must be executed as a :class:`StreamingQuery` using the :func:`startStream` method in
:class:`DataFrameWriter`. Methods that return a single answer, (e.g., :func:`count` or
:func:`collect`) will throw an :class:`AnalysisException` when there is a streaming
source present.