From 7bb765af1d676edc910c50106670d5dd33a7845f Mon Sep 17 00:00:00 2001 From: Yingwen Date: Wed, 6 Aug 2025 21:34:38 +0800 Subject: [PATCH] chore: pub access layer (#6670) Signed-off-by: evenyag --- src/mito2/src/compaction/compactor.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mito2/src/compaction/compactor.rs b/src/mito2/src/compaction/compactor.rs index e9259baf65..493371a0ca 100644 --- a/src/mito2/src/compaction/compactor.rs +++ b/src/mito2/src/compaction/compactor.rs @@ -90,7 +90,8 @@ pub struct CompactionRegion { pub(crate) engine_config: Arc, pub(crate) region_metadata: RegionMetadataRef, pub(crate) cache_manager: CacheManagerRef, - pub(crate) access_layer: AccessLayerRef, + /// Access layer to get the table path and path type. + pub access_layer: AccessLayerRef, pub(crate) manifest_ctx: Arc, pub(crate) current_version: CompactionVersion, pub(crate) file_purger: Option>,