(savepointName: string)
| 56 | } |
| 57 | |
| 58 | override getSavepointSQL(savepointName: string): string { |
| 59 | return `savepoint ${this.quoteIdentifier(savepointName)}`; |
| 60 | } |
| 61 | |
| 62 | override getBeginTransactionSQL(options?: { isolationLevel?: IsolationLevel; readOnly?: boolean }): string[] { |
| 63 | const parts: string[] = []; |
nothing calls this directly
no test coverage detected