You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Notes:
- geoarrow-rs no longer has `Table` or `ChunkedArray` concepts. This is
for symmetry with upstream `arrow`, to nudge people to use iterators
(especially `RecordBatchReader`) as much as possible, simplicity and
maintenance, and because I think higher-level libraries like DataFusion
will take care of the "table" case. I think for now, if you need a
"table" construct, it's best to have a struct wrapping
`(Vec<RecordBatch>, Arc<Schema>)` yourself.
-
## Closes
- List any issues that this pull request closes
- Delete this section if it is not applicable
## Related to
- List any issues that this pull request is related to
- Delete this section if it is not applicable
## Description
Description of the changes, including any "sidecar" changes that came
along (e.g. small bugfixes you found along the way).
## Checklist
Delete any checklist items that do not apply (e.g. if your change is
minor, it may not require documentation updates).
- [ ] Unit tests
- [ ] Documentation, including doctests
- [ ] Git history is linear
- [ ] Commit messages are descriptive
- [ ] (optional) Git commit messages follow [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/)
- [ ] Code is formatted (`cargo fmt`)
- [ ] `cargo test`
- [ ] Changes are added to the CHANGELOG
<!-- markdownlint-disable-file MD041 -->
---------
Co-authored-by: Pete Gadomski <[email protected]>
0 commit comments