| 861 | } |
| 862 | |
| 863 | void Call::receiveQuery() |
| 864 | { |
| 865 | LOG_INFO(log, "Handling call {}", getCallName(call_type)); |
| 866 | |
| 867 | readQueryInfo(); |
| 868 | |
| 869 | if (query_info.cancel()) |
| 870 | throw Exception(ErrorCodes::INVALID_GRPC_QUERY_INFO, "Initial query info cannot set the 'cancel' field"); |
| 871 | |
| 872 | LOG_DEBUG(log, "Received initial QueryInfo: {}", getQueryDescription(query_info)); |
| 873 | } |
| 874 | |
| 875 | void Call::executeQuery() |
| 876 | { |
nothing calls this directly
no test coverage detected