(name: string)
| 197 | } |
| 198 | |
| 199 | async releaseSavepoint(name: string): Promise<void> { |
| 200 | await this.executeRaw({ sql: `RELEASE SAVEPOINT ${name}`, args: [], argTypes: [] }) |
| 201 | } |
| 202 | |
| 203 | async executeRaw(params: SqlQuery): Promise<number> { |
| 204 | await this.#ensureBegun() |
nothing calls this directly
no test coverage detected