(query: string)
| 105 | } |
| 106 | |
| 107 | async runSqlQuery(query: string): Promise<Row[]> { |
| 108 | return this.dbc.runSqlQuery(query); |
| 109 | } |
| 110 | |
| 111 | getTableSchema(tableName: string): Promise<Schema> { |
| 112 | return this.dbc.getTableSchema(tableName); |
nothing calls this directly
no test coverage detected