From 64a816195ea3c2df225992807e4a0118e9527711 Mon Sep 17 00:00:00 2001 From: Clement Rey Date: Tue, 3 Sep 2024 13:58:28 +0200 Subject: [PATCH] lints --- crates/store/re_chunk_store/src/dataframe.rs | 2 +- crates/store/re_dataframe/src/engine.rs | 2 +- crates/store/re_dataframe/src/range.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/store/re_chunk_store/src/dataframe.rs b/crates/store/re_chunk_store/src/dataframe.rs index dcee8a27c219..16e0c68c055c 100644 --- a/crates/store/re_chunk_store/src/dataframe.rs +++ b/crates/store/re_chunk_store/src/dataframe.rs @@ -598,7 +598,7 @@ impl ChunkStore { /// * second, the time columns in lexical order (`frame_nr`, `log_time`, ...); /// * third, the component columns in lexical order (`Color`, `Radius, ...`). /// - /// This does not run a full-blown query, but rather just inspects [`Chunk`]-level metadata, + /// This does not run a full-blown query, but rather just inspects `Chunk`-level metadata, /// which can lead to false positives, but makes this very cheap to compute. pub fn schema_for_query(&self, query: &QueryExpression) -> Vec { re_tracing::profile_function!(format!("{query:?}")); diff --git a/crates/store/re_dataframe/src/engine.rs b/crates/store/re_dataframe/src/engine.rs index 665f5949c15b..ad3c318ac688 100644 --- a/crates/store/re_dataframe/src/engine.rs +++ b/crates/store/re_dataframe/src/engine.rs @@ -78,7 +78,7 @@ impl QueryEngine<'_> { /// * second, the time columns in lexical order (`frame_nr`, `log_time`, ...); /// * third, the component columns in lexical order (`Color`, `Radius, ...`). /// - /// This does not run a full-blown query, but rather just inspects [`Chunk`]-level metadata, + /// This does not run a full-blown query, but rather just inspects `Chunk`-level metadata, /// which can lead to false positives, but makes this very cheap to compute. #[inline] pub fn schema_for_query(&self, query: &QueryExpression) -> Vec { diff --git a/crates/store/re_dataframe/src/range.rs b/crates/store/re_dataframe/src/range.rs index 2c25c19247c2..94b84194f2e4 100644 --- a/crates/store/re_dataframe/src/range.rs +++ b/crates/store/re_dataframe/src/range.rs @@ -19,7 +19,7 @@ use crate::{QueryEngine, RecordBatch}; /// /// Cheaply created via [`QueryEngine::range`]. /// -/// See [`LatestAtQueryHandle::next`]. +/// See [`RangeQueryHandle::next_page`]. // // TODO(cmc): pagination support // TODO(cmc): intra-timestamp decimation support