Commit bcdb2a4 1 parent f8e43f0 commit bcdb2a4 Copy full SHA for bcdb2a4
File tree 1 file changed +9
-3
lines changed
crates/re_entity_db/tests
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -332,11 +332,17 @@ fn clears() -> anyhow::Result<()> {
332
332
Ok ( ( ) )
333
333
}
334
334
335
- // TODO: this cannot work as-is with read-time clears.
336
- #[ cfg( TODO ) ]
337
- /// Test for GC behavior following clear. This functionality is expected by blueprints.
338
335
#[ test]
339
336
fn clear_and_gc ( ) -> anyhow:: Result < ( ) > {
337
+ use re_data_store:: DataStoreStats ;
338
+
339
+ if true {
340
+ // TODO(#6552): Keeping this around for now so we don't forget about it, but this cannot work with
341
+ // read-time clears.
342
+ // We will replace this with a dedicated store API to remove an entity path in its entirety.
343
+ return Ok ( ( ) ) ;
344
+ }
345
+
340
346
re_log:: setup_logging ( ) ;
341
347
342
348
let mut db = EntityDb :: new ( StoreId :: random ( re_log_types:: StoreKind :: Recording ) ) ;
You can’t perform that action at this time.
0 commit comments