From d16647f4b63007f020686974d5f7ab2fcda9dfb8 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Fri, 5 Dec 2025 11:04:54 -0500 Subject: [PATCH 1/2] Temporarily ignore test_cache_with_ttl_and_lru test --- datafusion/execution/src/cache/list_files_cache.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/datafusion/execution/src/cache/list_files_cache.rs b/datafusion/execution/src/cache/list_files_cache.rs index 944cfca8ea2f8..0f71af52995c4 100644 --- a/datafusion/execution/src/cache/list_files_cache.rs +++ b/datafusion/execution/src/cache/list_files_cache.rs @@ -593,6 +593,9 @@ mod tests { } #[test] + // Ignored due to flakiness in CI. See + // https://github.com/apache/datafusion/issues/19114 + #[ignore] fn test_cache_with_ttl_and_lru() { let ttl = Duration::from_millis(200); let cache = DefaultListFilesCache::new(1000, Some(ttl)); From 163d40787c154027521012911424b4f94058e537 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Fri, 5 Dec 2025 11:10:28 -0500 Subject: [PATCH 2/2] ignore other ttl test as well --- datafusion/execution/src/cache/list_files_cache.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/datafusion/execution/src/cache/list_files_cache.rs b/datafusion/execution/src/cache/list_files_cache.rs index 0f71af52995c4..8ab6d4b1731a6 100644 --- a/datafusion/execution/src/cache/list_files_cache.rs +++ b/datafusion/execution/src/cache/list_files_cache.rs @@ -565,6 +565,9 @@ mod tests { } #[test] + // Ignored due to flakiness in CI. See + // https://github.com/apache/datafusion/issues/19114 + #[ignore] fn test_cache_with_ttl() { let ttl = Duration::from_millis(100); let cache = DefaultListFilesCache::new(10000, Some(ttl));