MCPcopy Create free account
hub / github.com/apache/impala / GetNullPartitionName

Method GetNullPartitionName

be/src/exec/catalog-op-executor.cc:470–483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

468}
469
470Status CatalogOpExecutor::GetNullPartitionName(
471 const TGetNullPartitionNameRequest& req, TGetNullPartitionNameResponse* result) {
472 int attempt = 0; // Used for debug action only.
473 CatalogServiceConnection::RpcStatus rpc_status =
474 CatalogServiceConnection::DoRpcWithRetry(
475 env_->catalogd_lightweight_req_client_cache(),
476 *ExecEnv::GetInstance()->GetCatalogdAddress().get(),
477 &CatalogServiceClientWrapper::GetNullPartitionName, req,
478 FLAGS_catalog_client_connection_num_retries,
479 FLAGS_catalog_client_rpc_retry_interval_ms,
480 [&attempt]() { return CatalogRpcDebugFn(&attempt); }, result);
481 RETURN_IF_ERROR(rpc_status.status);
482 return Status::OK();
483}
484
485Status CatalogOpExecutor::GetLatestCompactions(
486 const TGetLatestCompactionsRequest& req, TGetLatestCompactionsResponse* result) {

Callers

nothing calls this directly

Calls 5

CatalogRpcDebugFnFunction · 0.85
OKFunction · 0.85
GetCatalogdAddressMethod · 0.80
getMethod · 0.65

Tested by

no test coverage detected