hvanhovell commented on code in PR #40061:
URL: https://github.com/apache/spark/pull/40061#discussion_r1109153541


##########
connector/connect/client/jvm/src/main/scala/org/apache/spark/sql/Dataset.scala:
##########
@@ -2214,6 +2214,18 @@ class Dataset[T] private[sql] (val session: 
SparkSession, private[sql] val plan:
    */
   def inputFiles: Array[String] = analyze.getInputFilesList.asScala.toArray
 
+
+  /**
+   * Interface for saving the content of the non-streaming Dataset out into 
external storage.
+   *
+   * @group basic
+   * @since 3.4.0
+   */
+  def write: DataFrameWriter[T] = {
+    // if (isStreaming) {} TODO: support client local check?

Review Comment:
   Nah that is a server side problem.



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to