MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / tombstone_cell

Function tombstone_cell

nodedb/tests/bitemporal_array_gdpr.rs:86–97  ·  view source on GitHub ↗
(e: &mut ArrayEngine, x: i64, sys: i64, lsn: u64)

Source from the content-addressed store, hash-verified

84}
85
86fn tombstone_cell(e: &mut ArrayEngine, x: i64, sys: i64, lsn: u64) {
87 e.delete_cells(
88 &aid(),
89 vec![ArrayDeleteCell {
90 coord: vec![CoordValue::Int64(x)],
91 system_from_ms: sys,
92 erasure: false,
93 }],
94 lsn,
95 )
96 .unwrap();
97}
98
99fn erase_cell(e: &mut ArrayEngine, x: i64, sys: i64, lsn: u64) {
100 e.gdpr_erase_cell(&aid(), vec![CoordValue::Int64(x)], sys, lsn)

Callers 1

Calls 2

delete_cellsMethod · 0.80
aidFunction · 0.70

Tested by

no test coverage detected