@inheritDoc
(dump: string)
| 354 | |
| 355 | /** @inheritDoc */ |
| 356 | override async executeDump(dump: string): Promise<void> { |
| 357 | await this.ensureConnection(); |
| 358 | |
| 359 | try { |
| 360 | const raw = CompiledQuery.raw(dump); |
| 361 | await this.getClient().executeQuery(raw); |
| 362 | } catch (e) { |
| 363 | /* v8 ignore next */ |
| 364 | throw this.platform.getExceptionConverter().convertException(e as Error); |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | protected getSql(query: string, formatted: string, context?: LogContext): string { |
| 369 | const logger = this.config.getLogger(); |
nothing calls this directly
no test coverage detected