We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ff0df commit d721f4aCopy full SHA for d721f4a
1 file changed
datafusion/execution/src/cache/cache_unit.rs
@@ -225,7 +225,7 @@ impl FileStatisticsCache for DefaultFileStatisticsCache {
225
let mut entries = HashMap::<Path, FileStatisticsCacheEntry>::new();
226
for entry in self.state.lock().unwrap().lru_queue.list_entries() {
227
let path = entry.0.clone();
228
- let cached = entry.1.clone();
+ let cached = entry.1;
229
entries.insert(
230
path.path,
231
FileStatisticsCacheEntry {
0 commit comments