milenkovicm commented on PR #1590:
URL:
https://github.com/apache/datafusion-ballista/pull/1590#issuecomment-4338397578
looks like `DataFrameWriteOptions` has been added between version so many of
the writer methods are missing
```python
def write_csv(
self,
path: str | pathlib.Path,
with_header: bool = False,
write_options: DataFrameWriteOptions | None = None, # <- added
) -> None:
```
```python
def write_parquet_with_options(
path: str | Path,
options: ParquetWriterOptions,
write_options: DataFrameWriteOptions | None = None # <- added
) -> None
```
I remember now, that was the missing link
--
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]