kou commented on code in PR #43771:
URL: https://github.com/apache/arrow/pull/43771#discussion_r1723965947
##########
python/pyarrow/tests/test_dataset.py:
##########
@@ -4615,6 +4624,13 @@ def test_write_iterable(tempdir):
result = ds.dataset(base_dir, format="ipc").to_table()
assert result.equals(table)
+ base_dir = tempdir / 'inmemory_pycapsule'
+ stream = TableStreamWrapper(table)
+ ds.write_dataset(stream, base_dir,
+ basename_template='dat_{i}.arrow', format="feather")
Review Comment:
Can we use `ipc` not `feature` for `.arrow` file?
```suggestion
basename_template='dat_{i}.arrow', format="ipc")
```
--
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]