AlenkaF commented on code in PR #49858:
URL: https://github.com/apache/arrow/pull/49858#discussion_r3257713125
##########
python/pyarrow/_dataset.pyx:
##########
@@ -2253,6 +2253,8 @@ cdef class CsvFileFormat(FileFormat):
"""
cdef CsvFileWriteOptions opts = \
<CsvFileWriteOptions> FileFormat.make_write_options(self)
+ if kwargs.get('delimiter') is None:
+ kwargs['delimiter'] = opts.write_options.delimiter
Review Comment:
This saves the `delimiter` kwargs, but what about others? Could we make this
fix more general?
--
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]