Skip to content

Commit 15f6e4d

Browse files
committed
reenabled
1 parent 10992ad commit 15f6e4d

File tree

2 files changed

+1
-33
lines changed

2 files changed

+1
-33
lines changed

crates/store/re_chunk/src/chunk.rs

+1-17
Original file line numberDiff line numberDiff line change
@@ -284,23 +284,7 @@ impl Chunk {
284284
.collect();
285285
timelines == rhs_timelines
286286
}
287-
// TODO(cmc): we cannot compare tags yet, need to support Python & C++ first
288-
// && *components == rhs.components
289-
&& {
290-
let lhs_components_no_tags: ChunkComponents = components
291-
.clone()
292-
.into_iter_flattened()
293-
.map(|(descr, list_array)| (ComponentDescriptor::new(descr.component_name), list_array))
294-
.collect();
295-
let rhs_components_no_tags: ChunkComponents = rhs
296-
.components
297-
.clone()
298-
.into_iter_flattened()
299-
.map(|(descr, list_array)| (ComponentDescriptor::new(descr.component_name), list_array))
300-
.collect();
301-
302-
lhs_components_no_tags == rhs_components_no_tags
303-
}
287+
&& *components == rhs.components
304288
}
305289

306290
/// Check for equality while ignoring possible `Extension` type information

docs/snippets/snippets.toml

-16
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,6 @@
5454
"cpp",
5555
"rust",
5656
]
57-
"descriptors/descr_builtin_archetype" = [ # Python and C++ not yet supported (next PRs)
58-
"cpp",
59-
"py",
60-
]
61-
"descriptors/descr_builtin_component" = [ # Python and C++ not yet supported (next PRs)
62-
"cpp",
63-
"py",
64-
]
65-
"descriptors/descr_custom_archetype" = [ # Python and C++ not yet supported (next PRs)
66-
"cpp",
67-
"py",
68-
]
69-
"descriptors/descr_custom_component" = [ # Python and C++ not yet supported (next PRs)
70-
"cpp",
71-
"py",
72-
]
7357
views = [
7458
"cpp", # TODO(#5520): C++ views are not yet implemented
7559
"rust", # TODO(#5521): Rust views are not yet implemented

0 commit comments

Comments
 (0)