(keyspace, info, callback)
| 2034 | } |
| 2035 | |
| 2036 | newQueryPlan(keyspace, info, callback) { |
| 2037 | const hosts = !this.addresses |
| 2038 | ? this.hosts.values() |
| 2039 | : this.addresses.map(address => this.hosts.get(address)); |
| 2040 | |
| 2041 | return callback(null, hosts[Symbol.iterator]()); |
| 2042 | } |
| 2043 | } |
| 2044 | |
| 2045 |
no test coverage detected