build: pin unicode-segmentation for vortex tests#353
Merged
JingsongLi merged 1 commit intoJun 2, 2026
Conversation
leaves12138
approved these changes
Jun 2, 2026
leaves12138
left a comment
There was a problem hiding this comment.
LGTM. This is a small dependency pin, and all CI jobs are green. Pinning unicode-segmentation to the last known-good version for the Vortex test hang is reasonable.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Main CI is still hanging after reverting #346, so the object-storage change does not appear to be the root cause.
Comparing the successful #350 Ubuntu unit job with the hanging main Ubuntu unit job shows the same compiled crate set except for one resolved patch dependency:
unicode-segmentation v1.13.2unicode-segmentation v1.13.3This PR pins
unicode-segmentationto=1.13.2through thepaimoncrate so CI resolves back to the dependency set that passed before the Vortex tests started hanging.Changes
unicode-segmentation = "=1.13.2"dependency incrates/paimon/Cargo.toml.Testing
cargo tree -p paimon --features fulltext,vortex -i unicode-segmentationresolvesunicode-segmentation v1.13.2cargo test -p paimon arrow::format::vortex::tests::test_vortex_read_with --all-targets --features fulltext,vortex -- --nocapturecargo test -p paimon-datafusion --features vortex --test vortex_tables -- --nocaptureNotes
This is intended as a targeted unblock while the interaction between the latest
unicode-segmentationpatch and the Linux Vortex tests is investigated further.