From 398547a8683b541e0459d1c39bdb836a5d1b6d68 Mon Sep 17 00:00:00 2001 From: Nick Lanham Date: Tue, 9 Jan 2024 11:26:13 -0800 Subject: [PATCH] call with () --- .../scala/org/apache/spark/sql/delta/hooks/AutoCompact.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spark/src/main/scala/org/apache/spark/sql/delta/hooks/AutoCompact.scala b/spark/src/main/scala/org/apache/spark/sql/delta/hooks/AutoCompact.scala index c290c5f686b..0740b17aae0 100644 --- a/spark/src/main/scala/org/apache/spark/sql/delta/hooks/AutoCompact.scala +++ b/spark/src/main/scala/org/apache/spark/sql/delta/hooks/AutoCompact.scala @@ -150,7 +150,7 @@ trait AutoCompactBase extends PostCommitHook with DeltaLogging { // partitions stay eligible for subsequent auto compactions. partitionsStats.markPartitionsAsCompacted( tableId, - autoCompactRequest.allowedPartitions + autoCompactRequest.allowedPartitions() ) metrics } catch { @@ -161,7 +161,7 @@ trait AutoCompactBase extends PostCommitHook with DeltaLogging { if (AutoCompactUtils.reservePartitionEnabled(spark)) { AutoCompactPartitionReserve.releasePartitions( tableId, - autoCompactRequest.allowedPartitions + autoCompactRequest.allowedPartitions() ) } }