(name)
| 641 | } |
| 642 | |
| 643 | async getKeyspace(name) { |
| 644 | const row = await this._getFirstRow(format(_selectSingleKeyspaceV2, name)); |
| 645 | if (!row) { |
| 646 | return null; |
| 647 | } |
| 648 | return this._parseKeyspace(row); |
| 649 | } |
| 650 | |
| 651 | async getMaterializedView(keyspaceName, name, cache) { |
| 652 | let viewInfo = cache && cache[name]; |
nothing calls this directly
no test coverage detected