(schemaName: string, name: string)
| 296 | } |
| 297 | |
| 298 | dropView(schemaName: string, name: string): string { |
| 299 | return `DROP VIEW IF EXISTS ${this.escapeId(schemaName)}.${this.escapeId(name)}`; |
| 300 | } |
| 301 | |
| 302 | override async findFirst( |
| 303 | schemaName: string, |