Skip to content

Commit

Permalink
Fix missing partitionRecord in regression framework
Browse files Browse the repository at this point in the history
Introduced by #44587
  • Loading branch information
w41ter committed Nov 27, 2024
1 parent 66cb95f commit a571197
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ class Syncer {

tarPartition.value.version = srcPartition.value.version
long partitionId = fakePartitionId == -1 ? tarPartition.key : fakePartitionId
long version = fakeVersion == -1 ? partitionRecord.version : fakeVersion
long version = fakeVersion == -1 ? srcPartition.value.version : fakeVersion

TIngestBinlogRequest request = new TIngestBinlogRequest()
TUniqueId uid = new TUniqueId(-1, -1)
Expand Down

0 comments on commit a571197

Please sign in to comment.