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

Method AddDetail

be/src/common/status.cc:207–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205}
206
207void Status::AddDetail(const std::string& msg) {
208 DCHECK(msg_ != NULL);
209 msg_->AddDetail(msg);
210 VLOG(2) << msg;
211}
212
213void Status::MergeStatus(const Status& status) {
214 if (status.ok()) return;

Calls

no outgoing calls