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 <dongj...@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 <dongj...@apache.org>
Authored: Wed Mar 9 23:54:00 2016 -0800
Committer: Reynold Xin <r...@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-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to