-
Notifications
You must be signed in to change notification settings - Fork 384
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
Create re_arrow_util
#8689
Create re_arrow_util
#8689
Conversation
Web viewer built successfully. If applicable, you should also test it:
Note: This comment is updated whenever you push a commit. |
/// This is a temporary method that we use while waiting to migrate towards `arrow-rs`. | ||
/// * `arrow2` doesn't have a `RecordBatch` type, therefore we emulate that using our `TransportChunk`s. | ||
/// * `arrow-rs` does have one, and it natively supports concatenation. | ||
pub fn concatenate_record_batches( |
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.
Old code; moved
@rerun-bot full-check |
Started a full build: https://github.com/rerun-io/rerun/actions/runs/12773892703 |
@rerun-bot full-check |
Started a full build: https://github.com/rerun-io/rerun/actions/runs/12781699198 |
Related
re_arrow2
toarrow
#3741Details
Adds crate
re_arrow_util
.Adds two traits for downcasting
arrow
andarrow2
arrays in such a way that we cannot accidentally cast one into another. This will be very important for the arrow migration. It also makes the code shorter.