(name)
| 407 | } |
| 408 | |
| 409 | async getKeyspace(name) { |
| 410 | const row = await this._getFirstRow(format(_selectSingleKeyspaceV1, name)); |
| 411 | if (!row) { |
| 412 | return null; |
| 413 | } |
| 414 | return this._createKeyspace(row['keyspace_name'], row['durable_writes'], row['strategy_class'], JSON.parse(row['strategy_options'])); |
| 415 | } |
| 416 | |
| 417 | // eslint-disable-next-line require-await |
| 418 | async _parseTableOrView(tableInfo, tableRow, columnRows, indexRows, virtual) { |
nothing calls this directly
no test coverage detected