(batch: Batch)
| 1232 | } |
| 1233 | |
| 1234 | function isInsertBatch(batch: Batch): boolean { |
| 1235 | return batch.batchType === BatchType.INSERT; |
| 1236 | } |
| 1237 | |
| 1238 | function isUpdateBatch(batch: Batch): batch is Batch<UpdateStatement> { |
| 1239 | return batch.batchType === BatchType.UPDATE; |
no outgoing calls
no test coverage detected