From 8b9aee77349cb6306991f33ccc648910f63661a8 Mon Sep 17 00:00:00 2001 From: coldWater Date: Tue, 8 Oct 2024 19:13:47 +0800 Subject: [PATCH] fix Signed-off-by: coldWater --- src/query/config/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/query/config/src/config.rs b/src/query/config/src/config.rs index 8bb8c1fbe2d5..ab1046e115c0 100644 --- a/src/query/config/src/config.rs +++ b/src/query/config/src/config.rs @@ -3024,7 +3024,7 @@ mod cache_config_converters { if cache.disk_cache_config.path != inner::DiskCacheConfig::default().path && spill.spill_local_disk_path == inner::SpillConfig::default().path { - spill.spill_local_disk_path = PathBuf::from(spill.spill_local_disk_path) + spill.spill_local_disk_path = PathBuf::from(&cache.disk_cache_config.path) .join("temp/_query_spill") .into(); };