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

Method VerifyDebugDumpCache

be/src/exec/tuple-text-file-util.cc:191–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189}
190
191Status TupleTextFileUtil::VerifyDebugDumpCache(
192 const string& file_name, const string& ref_file_name, bool* passed) {
193 DCHECK(passed != nullptr);
194 *passed = true;
195 DCHECK(!ref_file_name.empty());
196 DCHECK(!file_name.empty());
197 // This is the fast path to compare the content of the files, passed will be set
198 // to true if all contents are the same.
199 return CacheFileCmp(ref_file_name, file_name, passed);
200}
201} // namespace impala

Callers

nothing calls this directly

Calls 2

CacheFileCmpFunction · 0.85
emptyMethod · 0.45

Tested by

no test coverage detected