| 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 { |
nothing calls this directly
no test coverage detected