(
&self,
tid: TenantId,
vs: VShardId,
db: DatabaseId,
p: &[u8],
)
| 145 | } |
| 146 | |
| 147 | pub fn append_array_delete( |
| 148 | &self, |
| 149 | tid: TenantId, |
| 150 | vs: VShardId, |
| 151 | db: DatabaseId, |
| 152 | p: &[u8], |
| 153 | ) -> crate::Result<Lsn> { |
| 154 | self.append_record(RecordType::ArrayDelete, tid, vs, db, p) |
| 155 | } |
| 156 | |
| 157 | /// Append a `CollectionTombstoned` record. Any subsequent replay |
| 158 | /// that extracts this record will filter prior writes for |
no test coverage detected