(self, client, query, vector)
| 1294 | return end_time - start_time |
| 1295 | |
| 1296 | def execute_query_using_client(self, client, query, vector): |
| 1297 | self.validate_exec_option_dimension(vector) |
| 1298 | query_options = vector.get_value(EXEC_OPTION) |
| 1299 | if query_options is not None: |
| 1300 | client.set_configuration(query_options) |
| 1301 | return client.execute(query) |
| 1302 | |
| 1303 | def execute_query_async_using_client(self, client, query, vector): |
| 1304 | self.validate_exec_option_dimension(vector) |
no test coverage detected