diff --git a/rerun_py/rerun_bindings/rerun_bindings.pyi b/rerun_py/rerun_bindings/rerun_bindings.pyi index eb4ec7420cdc..9ebf12f9bdb4 100644 --- a/rerun_py/rerun_bindings/rerun_bindings.pyi +++ b/rerun_py/rerun_bindings/rerun_bindings.pyi @@ -62,7 +62,7 @@ class RecordingView: Filter the view to only include data at the given index values. The index values returned will be the intersection between the provided values and the - original index. + original index values. This requires index values to be a precise match. Index values in Rerun are represented as i64 sequence counts or nanoseconds. This API does not expose an interface diff --git a/rerun_py/src/dataframe.rs b/rerun_py/src/dataframe.rs index 4bf460ad701c..00c573c9d964 100644 --- a/rerun_py/src/dataframe.rs +++ b/rerun_py/src/dataframe.rs @@ -554,11 +554,11 @@ impl PyRecordingView { }) } - fn filter_is_not_null(&self, component: AnyComponentColumn) -> Self { - let component = component.into_selector(); + fn filter_is_not_null(&self, column: AnyComponentColumn) -> Self { + let column = column.into_selector(); let mut query_expression = self.query_expression.clone(); - query_expression.filtered_point_of_view = Some(component); + query_expression.filtered_point_of_view = Some(column); Self { recording: self.recording.clone(),