(name)
| 911 | } |
| 912 | |
| 913 | async getKeyspace(name) { |
| 914 | const ks = await this._getKeyspace(_selectSingleKeyspaceV2, name, false); |
| 915 | if (!ks) { |
| 916 | // if not found, attempt to retrieve as virtual keyspace. |
| 917 | return this._getKeyspace(_selectSingleVirtualKeyspace, name, true); |
| 918 | } |
| 919 | return ks; |
| 920 | } |
| 921 | |
| 922 | async _getKeyspace(query, name, virtual) { |
| 923 | try { |
nothing calls this directly
no test coverage detected