Conversation
Merging this PR will not alter performance
Comparing Footnotes
|
ad7e67a to
5ad3c47
Compare
| } | ||
| let concat = concat.freeze(); | ||
| session.arrays().register(ParquetVariant); | ||
| session.arrays().register(Variant); |
Contributor
There was a problem hiding this comment.
ParquetVariant is registered above.
Variant is the canonical array, it's now registrered in default ArraySession
gatesn
approved these changes
Apr 14, 2026
5ad3c47 to
7f55d36
Compare
Signed-off-by: Connor Tsui <connor.tsui20@gmail.com>
7f55d36 to
c897b28
Compare
Signed-off-by: Connor Tsui <connor.tsui20@gmail.com>
connortsui20
commented
Apr 14, 2026
Comment on lines
283
to
+295
| @@ -292,7 +292,7 @@ impl PyVortexWriteOptions { | |||
| /// ```python | |||
| /// >>> vx.io.VortexWriteOptions.compact().write(sprl, "tiny.vortex") | |||
| /// >>> os.path.getsize('tiny.vortex') | |||
| /// 55120 | |||
| /// 55152 | |||
Contributor
Author
There was a problem hiding this comment.
@gatesn is this expected with only the changes in this PR?
connortsui20
commented
Apr 14, 2026
Comment on lines
-724
to
-725
| #[test] | ||
| fn unknown_array_encoding_allow_unknown() { |
Contributor
Author
There was a problem hiding this comment.
this test didnt actually test anything, and was broken
gatesn
requested changes
Apr 14, 2026
Contributor
gatesn
approved these changes
Apr 14, 2026
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
Apparently we just don't need this now? And we want to use
array_serializeto get metadata instead.This also fixes a few incorrect tests that we had.
API Changes
Removes the
metadatamethod onDynArray.Testing
Fixes some tests.