Skip to content

Commit

Permalink
[AMORO-3224] Compare min plan interval in optimizing config (#3225)
Browse files Browse the repository at this point in the history
Compare min plan interval in optimizing config
  • Loading branch information
zhoujinsong authored Sep 26, 2024
1 parent a2bc71a commit 91a2dac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions amoro-ams/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,10 @@
<artifactId>url-connection-client</artifactId>
</dependency>

<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3-transfer-manager</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3-transfer-manager</artifactId>
</dependency>

<dependency>
<groupId>org.apache.hadoop</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,8 @@ public boolean equals(Object o) {
&& baseHashBucket == that.baseHashBucket
&& baseRefreshInterval == that.baseRefreshInterval
&& hiveRefreshInterval == that.hiveRefreshInterval
&& Objects.equal(optimizerGroup, that.optimizerGroup);
&& Objects.equal(optimizerGroup, that.optimizerGroup)
&& Objects.equal(minPlanInterval, that.minPlanInterval);
}

@Override
Expand All @@ -318,7 +319,8 @@ public int hashCode() {
fullRewriteAllFiles,
baseHashBucket,
baseRefreshInterval,
hiveRefreshInterval);
hiveRefreshInterval,
minPlanInterval);
}

@Override
Expand Down

0 comments on commit 91a2dac

Please sign in to comment.