(&self, lsn: u64, xact_id: u32)
| 274 | } |
| 275 | |
| 276 | pub async fn stream_commit(&self, lsn: u64, xact_id: u32) -> TableEvent { |
| 277 | let event = TableEvent::Commit { |
| 278 | lsn, |
| 279 | xact_id: Some(xact_id), |
| 280 | is_recovery: false, |
| 281 | }; |
| 282 | self.send_event(event.clone()).await; |
| 283 | event |
| 284 | } |
| 285 | |
| 286 | pub async fn stream_abort(&self, xact_id: u32) -> TableEvent { |
| 287 | let event = TableEvent::StreamAbort { |
no test coverage detected