(run)
| 429 | return internal.updateMany(table, { set, where: constrainedWhere }); |
| 430 | }, |
| 431 | async transaction(run) { |
| 432 | return internal.transaction((transactionInstance) => |
| 433 | run(withQueryContext(transactionInstance, context)), |
| 434 | ); |
| 435 | }, |
| 436 | } as AbstractQuery<S>; |
| 437 | |
| 438 | Object.defineProperty(query, "withContext", { |
nothing calls this directly
no test coverage detected