-
Notifications
You must be signed in to change notification settings - Fork 369
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
filter_is_not_null
/ filtered_point_of_view
returns incorrect results
#7681
Labels
Comments
jleibs
added
🪳 bug
Something isn't working
👀 needs triage
This issue needs to be triaged by the Rerun team
feat-dataframe-api
Everything related to the dataframe API
and removed
👀 needs triage
This issue needs to be triaged by the Rerun team
labels
Oct 10, 2024
Repro: let mut query = QueryExpression::new(Timeline::new_sequence("my_index"));
query.view_contents = Some([("points".into(), None)].into_iter().collect());
query.filtered_point_of_view = Some(ComponentColumnSelector::new_for_component_name(
"points".into(),
"rerun.components.Color".into(),
));
eprintln!("{query:#?}:");
let query_handle = query_engine.query(query.clone());
// eprintln!("{:#?}", query_handle.selected_contents());
for batch in query_handle.into_batch_iter() {
eprintln!("{batch}");
}
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
using_index_values
,fill_latest_at
, andfilter_is_not_null
#7680Position3D is not in the result set even though it should be.
Can be reproduced on top of #7680
Simple repro in python:
Output:
The text was updated successfully, but these errors were encountered: