You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sql/import: fix progress summary loss during concurrent updates
Previously, `accumulatedBulkSummary` was reset on each `updateJobProgress`
call, assuming the job progress update would always succeed. However, if
the update failed due to concurrent job state changes and retried, the
reset buffer would cause progress data loss, resulting in incorrect row
counts in progress reporting.
Fix this by removing the reset logic and directly assigning
`accumulatedBulkSummary` to the progress summary instead of adding to it.
Release note (bug fix): Fixed import progress reporting to show correct
row counts when concurrent job state changes occur.
0 commit comments