(batch: Batch)
| 1236 | } |
| 1237 | |
| 1238 | function isUpdateBatch(batch: Batch): batch is Batch<UpdateStatement> { |
| 1239 | return batch.batchType === BatchType.UPDATE; |
| 1240 | } |
| 1241 | |
| 1242 | function isDeleteBatch(batch: Batch): batch is Batch<DeleteStatement> { |
| 1243 | return batch.batchType === BatchType.DELETE; |
no outgoing calls
no test coverage detected