forked from apache/arrow-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
8728: fix: ArrayIter does not report size hint correctly after advancing from the iterator back
#10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
12eaa17
[Minor]: Document visibility for enums produced by Thrift macros (#8706)
etseidl 9c1b03b
Update `arrow-avro` `README.md` version to 57 (#8695)
jecsand838 928daa4
chore: add test case of RowSelection::trim (#8660)
lichuang 729b258
[parquet] Adding counting method in thrift_enum macro to support ENC…
hhhizzz 021090f
[Variant] Remove `create_test_variant_array` helper method (#8664)
friendlymatthew 79575aa
perf: zero-copy path in `RowConverter::from_binary` (#8686)
mzabaluev e9a7fe5
Add `FilterPredicate::filter_record_batch` (#8693)
pepijnve 99811f8
check bit width to avoid panic in DeltaBitPackDecoder (#8688)
rambleraptor 78bd204
[thrift-remodel] Use `thrift_enum` macro for `ConvertedType` (#8680)
etseidl c149027
Cast support for RunEndEncoded arrays (#8589)
vegarsti 7f3d3ae
perf: override `count`, `nth`, `nth_back`, `last` and `max` for BitIt…
rluvaton 29cd685
Change some panics to errors in parquet decoder (#8602)
rambleraptor 5e32cc6
Support more operations on ListView (#8645)
a10y 06c49db
[Parquet] Account for FileDecryptor in ParquetMetaData heap size calc…
adamreeve 7a92be5
Refactor arrow-cast decimal casting to unify the rescale logic used i…
liamzwbao 62df32e
Add benchmark for casting to RunEndEncoded (REE) (#8710)
vegarsti 6c3e588
fix: `zip` now treats nulls as false in provided mask regardless of t…
rluvaton dd98964
fix: `ArrayIter` does not report size hint correctly after advancing …
rluvaton ae5e961
cleanup tests
rluvaton File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update version references in feature snippets section for consistency.
Lines 47 and 54 have been updated to
57.0.0, but the feature snippet examples at lines 152, 157, and 162 still referenceversion = "56". This creates inconsistency in the documentation.To maintain clarity, update all version references consistently:
* Minimal, fast build (common pipelines): ```toml - arrow-avro = { version = "56", default-features = false, features = ["deflate", "snappy"] } + arrow-avro = { version = "57.0.0", default-features = false, features = ["deflate", "snappy"] } ``` * Include Zstandard too (modern data lakes): ```toml - arrow-avro = { version = "56", default-features = false, features = ["deflate", "snappy", "zstd"] } + arrow-avro = { version = "57.0.0", default-features = false, features = ["deflate", "snappy", "zstd"] } ``` * Fingerprint helpers: ```toml - arrow-avro = { version = "56", features = ["md5", "sha256"] } + arrow-avro = { version = "57.0.0", features = ["md5", "sha256"] } ```Also applies to: 54-54
🤖 Prompt for AI Agents