Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Relax lock when updating job history information
In #6767 we introduced the ability to track job execution history, but looks like we exaggerated the lock level when marking the end of the job execution using `ShareRowExclusiveLock` that conflicts with autovacuum jobs that requires an `ShareUpdateExclusiveLock`, so relaxing the lock to `RowExclusiveLock` because we only update the tuple in the job execution history metadata table.
- Loading branch information