File tree 2 files changed +1
-33
lines changed
crates/store/re_chunk/src
2 files changed +1
-33
lines changed Original file line number Diff line number Diff line change @@ -284,23 +284,7 @@ impl Chunk {
284
284
. collect ( ) ;
285
285
timelines == rhs_timelines
286
286
}
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
304
288
}
305
289
306
290
/// Check for equality while ignoring possible `Extension` type information
Original file line number Diff line number Diff line change 54
54
" cpp" ,
55
55
" rust" ,
56
56
]
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
- ]
73
57
views = [
74
58
" cpp" , # TODO(#5520): C++ views are not yet implemented
75
59
" rust" , # TODO(#5521): Rust views are not yet implemented
You can’t perform that action at this time.
0 commit comments