Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Jan 6, 2025
1 parent 0a88c5f commit 98f1d29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/store/re_dataframe/src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ impl<E: StorageEngineLike> QueryHandle<E> {
/// }
/// ```
#[inline]
pub fn next_row_arrow2(&self) -> Option<Vec<Box<dyn Arrow2Array>>> {
fn next_row_arrow2(&self) -> Option<Vec<Box<dyn Arrow2Array>>> {
self.engine
.with(|store, cache| self._next_row(store, cache))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ impl PerStoreChunkSubscriber for MaxImageDimensionsStoreSubscriber {

fn size_from_blob(blob: &[u8], media_type: Option<MediaType>) -> Option<[u32; 2]> {
re_tracing::profile_function!();

let media_type = MediaType::or_guess_from_data(media_type, blob)?;

if media_type.is_image() {
Expand Down

0 comments on commit 98f1d29

Please sign in to comment.