Skip to content

Commit

Permalink
[FixBUG] Hive auto sync meta cache remove skip rule when process Alte…
Browse files Browse the repository at this point in the history
…rPartitionEvent (#6302) (#6307)

remove skip rule on alter_table event
  • Loading branch information
mergify[bot] authored May 19, 2022
1 parent 3115820 commit 671149f
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,7 @@ protected boolean existInCache() {

@Override
protected boolean canBeSkipped() {
if (isRename) {
return true;
}

Table tblAfter = tableAfter.deepCopy();
filterParameters(tableBefore.getParameters(), tblAfter.getParameters());
return tblAfter.equals(tableBefore);
return false;
}

@Override
Expand Down

0 comments on commit 671149f

Please sign in to comment.