Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/query/ee/src/storages/fuse/operations/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
// limitations under the License.

use std::sync::Arc;
use std::time::Duration;

use chrono::DateTime;
use chrono::Utc;
Expand All @@ -24,6 +23,7 @@ use databend_common_catalog::table_context::TableContext;
use databend_common_exception::Result;
use databend_common_storages_fuse::FuseTable;
use databend_enterprise_vacuum_handler::vacuum_handler::VacuumDropTablesResult;
use databend_enterprise_vacuum_handler::vacuum_handler::VacuumTempOptions;
use databend_enterprise_vacuum_handler::VacuumHandler;
use databend_enterprise_vacuum_handler::VacuumHandlerWrapper;

Expand Down Expand Up @@ -57,10 +57,10 @@ impl VacuumHandler for RealVacuumHandler {
&self,
abort_checker: AbortChecker,
temporary_dir: String,
retain: Option<Duration>,
options: &VacuumTempOptions,
vacuum_limit: usize,
) -> Result<usize> {
do_vacuum_temporary_files(abort_checker, temporary_dir, retain, vacuum_limit).await
do_vacuum_temporary_files(abort_checker, temporary_dir, options, vacuum_limit).await
}
}

Expand Down
Loading
Loading