[BugFix] Fix global dictionary update error under shared-data (backport #61373) (#61395)

Signed-off-by: stdpain <drfeng08@gmail.com>
Co-authored-by: stdpain <34912776+stdpain@users.noreply.github.com>
This commit is contained in:
mergify[bot] 2025-07-29 10:50:33 +00:00 committed by GitHub
parent 8f1d77007f
commit 3eac4a930f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ public class LakeTableTxnStateListener implements TransactionStateListener {
if (validDictCollectedVersions.size() == validDictCacheColumns.size()) {
version = validDictCollectedVersions.get(j);
}
this.validDictCacheColumns.put(validDictCacheColumns.get(i), version);
this.validDictCacheColumns.put(validDictCacheColumns.get(j), version);
}
}
if (i == tabletMetaList.size() - 1) {