| 203 | } |
| 204 | |
| 205 | QueryProxy::QueryProxy(int32_t shard_num) { |
| 206 | shard_num_ = shard_num; |
| 207 | compiler_ = Compiler::GetInstance(); |
| 208 | env_ = Env::Default(); |
| 209 | tp_ = env_->StartThreadPool("client_thread_pool", 8); |
| 210 | } |
| 211 | |
| 212 | std::unordered_map<std::string, Tensor*> |
| 213 | QueryProxy::RunGremlin(Query* query, |
nothing calls this directly
no test coverage detected