Move MarkCurrentTransactionIdLoggedIfAny() out of the critical section.
authorAmit Kapila <akapila@postgresql.org>
Tue, 2 Nov 2021 03:40:17 +0000 (09:10 +0530)
committerAmit Kapila <akapila@postgresql.org>
Tue, 2 Nov 2021 03:41:05 +0000 (09:11 +0530)
commit335397456b7e3f9f619038cb322fbfc9dd649d4f
treee2c545cbd7776e7c3bc73381dac57919573d753f
parent71db6459e6e4ef623e98f3b1e3e9fed1bfb0ae3b
Move MarkCurrentTransactionIdLoggedIfAny() out of the critical section.

We don't modify any shared state in this function which could cause
problems for any concurrent session. This will make it look similar to the
other updates for the same structure (TransactionState) which avoids
confusion for future readers of code.

Author: Dilip Kumar
Reviewed-by: Amit Kapila
Discussion: https://postgr.es/m/E1mSoYz-0007Fh-D9@gemulon.postgresql.org
src/backend/access/transam/xlog.c