Enable backwards compatibility checks for Python-only snippets#10898
Merged
Enable backwards compatibility checks for Python-only snippets#10898
Conversation
5 tasks
Member
|
@rerun-bot full-check |
Contributor
Contributor
|
Web viewer built successfully. If applicable, you should also test it:
Note: This comment is updated whenever you push a commit. |
07ce737 to
9eda102
Compare
Member
Author
|
@rerun-bot full-check |
Contributor
|
Latest documentation preview deployed successfully.
Note: This comment is updated whenever you push a commit. |
Contributor
9eda102 to
c6146e6
Compare
c6146e6 to
e7c7eb5
Compare
Member
Author
|
@rerun-bot full-check |
Contributor
Member
Author
|
@rerun-bot full-check |
Contributor
emilk
added a commit
that referenced
this pull request
Aug 24, 2025
This changes the encoding of the component column containing bobs from `List<List<u8>>` to `List<Binary>`, i.e. `BinaryArray` or `LargeBinaryArray` (both are supported!). Old data is migrated on load. This adds support for blobs larger than 2 GiB, e.g. large video files. In the viewer we now support both 32-bit and 64-bit offsets for the binary data (`BinaryArray vs LargeBinaryArray`). This is _technically_ a type of datatype generics. Sort of. See #9144 * The SDK code (Rust, Python, C++) always encoded as 64-bit (supporting >2GiB videos). * Legacy blobs are converted from 32-bit List<u8> to 64-bit binary ## TODO * [x] Fix python * [x] Merge #10899 * [x] Merge #10898 * [x] Use 63-bit `LargeBinary` instead of 31-bit `Binary` * Closes #10929 * Closes #10973 * [x] `@rerun-bot full-check`
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.
We have a lot of Python-only code snippets. Unfortunately these weren't covered by backwards compatibility checks… until now!
TODO
@rerun-bot full-check