(exec: RowExecutionMetadata | undefined)
| 37 | * `writeExecutionsPatch` mirrors this status test in its `WHERE`. |
| 38 | */ |
| 39 | export function isExecCancelled(exec: RowExecutionMetadata | undefined): boolean { |
| 40 | return exec?.status === 'cancelled' |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Cancelled AND killed after `since`. The dispatcher's tombstone test: a cell |
no outgoing calls
no test coverage detected