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

Method GetNullPartitionName

be/src/catalog/catalog-server.cc:556–568  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

554 }
555
556 void GetNullPartitionName(TGetNullPartitionNameResponse& resp,
557 const TGetNullPartitionNameRequest& req) override {
558 VLOG_RPC << "GetNullPartitionName(): request=" << ThriftDebugString(req);
559 Status status = AcceptRequest(req.protocol_version);
560 if (status.ok()) {
561 status = catalog_server_->catalog()->GetNullPartitionName(&resp);
562 }
563 if (!status.ok()) LOG(ERROR) << status.GetDetail();
564 TStatus thrift_status;
565 StatusToThrift(status, &thrift_status);
566 resp.__set_status(thrift_status);
567 VLOG_RPC << "GetNullPartitionName(): response=" << ThriftDebugStringNoThrow(resp);
568 }
569
570 void GetLatestCompactions(TGetLatestCompactionsResponse& resp,
571 const TGetLatestCompactionsRequest& req) override {

Callers

nothing calls this directly

Calls 6

ThriftDebugStringFunction · 0.85
StatusToThriftFunction · 0.85
ThriftDebugStringNoThrowFunction · 0.85
GetDetailMethod · 0.80
okMethod · 0.45
catalogMethod · 0.45

Tested by

no test coverage detected