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

Method RemoveEntry

be/src/runtime/lib-cache.cc:257–262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

255}
256
257void LibCache::RemoveEntry(const string& hdfs_lib_file) {
258 unique_lock<mutex> lib_cache_lock(lock_);
259 LibMap::iterator it = lib_cache_.find(hdfs_lib_file);
260 if (it == lib_cache_.end()) return;
261 RemoveEntryInternal(hdfs_lib_file, it);
262}
263
264void LibCache::RemoveEntryInternal(
265 const string& hdfs_lib_file, const LibMap::iterator& entry_iter) {

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected