Skip to content

Commit

Permalink
Revert "fix the partial update checklist (-> topic)"
Browse files Browse the repository at this point in the history
This reverts commit 5a1b8a6.
  • Loading branch information
teh-cmc committed Dec 17, 2024
1 parent c9a1cdd commit 6fe7e2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 21 deletions.
6 changes: 1 addition & 5 deletions crates/store/re_chunk_store/src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -755,11 +755,7 @@ impl ChunkStore {
})
.collect_vec();

debug_assert!(
chunks.iter().map(|chunk| chunk.id()).all_unique(),
"{:?}",
self.id()
);
debug_assert!(chunks.iter().map(|chunk| chunk.id()).all_unique());

chunks
}
Expand Down
18 changes: 2 additions & 16 deletions tests/python/release_checklist/check_range_partial_updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,7 @@ def log_points() -> None:
rr.log("points", [rr.components.RadiusBatch(-20)])

rr.set_time_sequence("frame", 44)
rr.log(
"points",
[
rr.components.ColorBatch([0, 0, 255]).with_descriptor_overrides(
archetype_name=rr.Points3D.archetype_name(), archetype_field_name="colors"
)
],
)
rr.log("points", [rr.components.ColorBatch([0, 0, 255])])

rr.set_time_sequence("frame", 45)
rr.log("points", rr.Points3D([[0, 0, 1], [1, 1, 0]]))
Expand All @@ -134,14 +127,7 @@ def log_points() -> None:
rr.log("points", [rr.components.RadiusBatch(-40)])
rr.log("points", rr.Points3D([[0, 2, 0], [1, 2, 1]]))
rr.log("points", [rr.components.RadiusBatch(-30)])
rr.log(
"points",
[
rr.components.ColorBatch([0, 255, 0]).with_descriptor_overrides(
archetype_name=rr.Points3D.archetype_name(), archetype_field_name="colors"
)
],
)
rr.log("points", [rr.components.ColorBatch([0, 255, 0])])
rr.log("points", rr.Points3D([[0, 0, 2], [2, 2, 0]]))


Expand Down

0 comments on commit 6fe7e2c

Please sign in to comment.