| 22 | /// Tracks table sequence numbers for change detection. |
| 23 | #[derive(Debug, Default)] |
| 24 | pub struct UpdateWatcher { |
| 25 | prev_seq: [u64; Db::NUM_TABLES], |
| 26 | } |
| 27 | |
| 28 | impl UpdateWatcher { |
| 29 | /// Detect whether any table changed since the last call. |
nothing calls this directly
no outgoing calls
no test coverage detected