You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by rx...@apache.org on 2016/03/10 08:54:02 UTC

spark git commit: [MINOR][SQL] Replace DataFrameWriter.stream() with startStream() in comments.

Repository: spark
Updated Branches:
  refs/heads/master 3e3c3d58d -> 9525c563d


[MINOR][SQL] Replace DataFrameWriter.stream() with startStream() in comments.

## What changes were proposed in this pull request?

According to #11627 , this PR replace `DataFrameWriter.stream()` with `startStream()` in comments of `ContinuousQueryListener.java`.

## How was this patch tested?

Manual. (It changes on comments.)

Author: Dongjoon Hyun <do...@apache.org>

Closes #11629 from dongjoon-hyun/minor_rename.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/9525c563
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/9525c563
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/9525c563

Branch: refs/heads/master
Commit: 9525c563de9c446e108c1e9535238d99cc34cab9
Parents: 3e3c3d5
Author: Dongjoon Hyun <do...@apache.org>
Authored: Wed Mar 9 23:54:00 2016 -0800
Committer: Reynold Xin <rx...@databricks.com>
Committed: Wed Mar 9 23:54:00 2016 -0800

----------------------------------------------------------------------
 .../org/apache/spark/sql/util/ContinuousQueryListener.scala    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/9525c563/sql/core/src/main/scala/org/apache/spark/sql/util/ContinuousQueryListener.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/util/ContinuousQueryListener.scala b/sql/core/src/main/scala/org/apache/spark/sql/util/ContinuousQueryListener.scala
index 73c78d1..2c5358c 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/util/ContinuousQueryListener.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/util/ContinuousQueryListener.scala
@@ -32,9 +32,9 @@ abstract class ContinuousQueryListener {
   /**
    * Called when a query is started.
    * @note This is called synchronously with
-   *       [[org.apache.spark.sql.DataFrameWriter `DataFrameWriter.stream()`]],
-   *       that is, `onQueryStart` will be called on all listeners before `DataFrameWriter.stream()`
-   *       returns the corresponding [[ContinuousQuery]].
+   *       [[org.apache.spark.sql.DataFrameWriter `DataFrameWriter.startStream()`]],
+   *       that is, `onQueryStart` will be called on all listeners before
+   *       `DataFrameWriter.startStream()` returns the corresponding [[ContinuousQuery]].
    */
   def onQueryStarted(queryStarted: QueryStarted)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org