[jira] [Commented] (SPARK-42733) df.write.format().save() should support calling with no path or table name

2023-03-09 Thread Apache Spark (Jira)


[ 
https://issues.apache.org/jira/browse/SPARK-42733?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17698729#comment-17698729
 ] 

Apache Spark commented on SPARK-42733:
--

User 'zhenlineo' has created a pull request for this issue:
https://github.com/apache/spark/pull/40358

> df.write.format().save() should support calling with no path or table name
> --
>
> Key: SPARK-42733
> URL: https://issues.apache.org/jira/browse/SPARK-42733
> Project: Spark
>  Issue Type: Sub-task
>  Components: Connect
>Affects Versions: 3.4.0
>Reporter: Martin Grund
>Priority: Major
> Fix For: 3.4.0
>
>
> When calling `session.range(5).write.format("xxx").options().save()` Spark 
> Connect currently throws an assertion error because it expects that either 
> path or tableName are present. According to our current PySpark 
> implementation that is not necessary though.
>
> {code:python}
> if format is not None:
> self.format(format)
> if path is None:
> self._jwrite.save()
> else:
> self._jwrite.save(path)
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Commented] (SPARK-42733) df.write.format().save() should support calling with no path or table name

2023-03-09 Thread Apache Spark (Jira)


[ 
https://issues.apache.org/jira/browse/SPARK-42733?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17698608#comment-17698608
 ] 

Apache Spark commented on SPARK-42733:
--

User 'ueshin' has created a pull request for this issue:
https://github.com/apache/spark/pull/40356

> df.write.format().save() should support calling with no path or table name
> --
>
> Key: SPARK-42733
> URL: https://issues.apache.org/jira/browse/SPARK-42733
> Project: Spark
>  Issue Type: Sub-task
>  Components: Connect
>Affects Versions: 3.4.0
>Reporter: Martin Grund
>Priority: Major
>
> When calling `session.range(5).write.format("xxx").options().save()` Spark 
> Connect currently throws an assertion error because it expects that either 
> path or tableName are present. According to our current PySpark 
> implementation that is not necessary though.
>
> {code:python}
> if format is not None:
> self.format(format)
> if path is None:
> self._jwrite.save()
> else:
> self._jwrite.save(path)
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org