(schemaName: string, tableName: string)
| 187 | } |
| 188 | |
| 189 | async dropTable(schemaName: string, tableName: string): Promise<void> { |
| 190 | await this.query( |
| 191 | `DROP TABLE ${this.escapeId(schemaName)}.${this.escapeId(tableName)};` |
| 192 | ); |
| 193 | } |
| 194 | |
| 195 | async emptyTable(schemaName: string, tableName: string): Promise<void> { |
| 196 | await this.query( |