jorisvandenbossche commented on code in PR #14414:
URL: https://github.com/apache/arrow/pull/14414#discussion_r995642757


##########
python/pyarrow/_dataset.pyx:
##########
@@ -1174,6 +1189,12 @@ cdef class IpcFileFormat(FileFormat):
 
     def equals(self, IpcFileFormat other):
         return True
+    
+    def make_write_options(self, **kwargs):
+        cdef IpcFileWriteOptions opts = \
+            <IpcFileWriteOptions> FileFormat.make_write_options(self)
+        opts.options = IpcWriteOptions(**kwargs)

Review Comment:
   Above, the property is called `write_options`?



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

Reply via email to