(name: string)
| 189 | } |
| 190 | |
| 191 | async createSavepoint(name: string): Promise<void> { |
| 192 | await this.executeRaw({ sql: `SAVEPOINT ${name}`, args: [], argTypes: [] }) |
| 193 | } |
| 194 | |
| 195 | async rollbackToSavepoint(name: string): Promise<void> { |
| 196 | await this.executeRaw({ sql: `ROLLBACK TO SAVEPOINT ${name}`, args: [], argTypes: [] }) |
nothing calls this directly
no test coverage detected