WillAyd commented on PR #967:
URL: https://github.com/apache/arrow-adbc/pull/967#issuecomment-1666556711
I generated the IPC files like this:
```python
import pyarrow as pa
from datetime import date
schema = pa.schema([pa.field("col", pa.date32())])
with pa.OSFile("test.arrow", "wb") as sink:
with pa.ipc.new_file(sink, schema) as writer:
batch = pa.record_batch([pa.array([0, 20000], type=pa.date32())],
schema)
writer.write(batch)
```
Another thought I had (maybe here, maybe in another PR) was that we could
choose a high level language like Python for creating the expected values and
just have the test suite execute that on the fly, rather than having developers
commit binary files to the repo
--
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]