LVRelStats vacrelstats;
ErrorContextCallback errcallback;
+ /*
+ * A parallel vacuum worker must have only PROC_IN_VACUUM flag since we
+ * don't support parallel vacuum for autovacuum as of now.
+ */
+ Assert(MyPgXact->vacuumFlags == PROC_IN_VACUUM);
+
lvshared = (LVShared *) shm_toc_lookup(toc, PARALLEL_VACUUM_KEY_SHARED,
false);
elevel = lvshared->elevel;
* PGPROC of the transaction from which we imported the snapshot, rather than
* an XID.
*
+ * Note that this function also copies vacuumFlags from the source `proc` in
+ * order to avoid the case where MyPgXact's xmin needs to be skipped for
+ * computing xid horizon.
+ *
* Returns true if successful, false if source xact is no longer running.
*/
bool
Assert(TransactionIdIsNormal(xmin));
Assert(proc != NULL);
- /* Get lock so source xact can't end while we're doing this */
- LWLockAcquire(ProcArrayLock, LW_SHARED);
+ /*
+ * Get an exclusive lock so that we can copy vacuumFlags from source proc.
+ */
+ LWLockAcquire(ProcArrayLock, LW_EXCLUSIVE);
pgxact = &allPgXact[proc->pgprocno];
TransactionIdIsNormal(xid) &&
TransactionIdPrecedesOrEquals(xid, xmin))
{
+ /* Install xmin */
MyPgXact->xmin = TransactionXmin = xmin;
+
+ /* Flags being copied must be valid copy-able flags. */
+ Assert((pgxact->vacuumFlags & (~PROC_COPYABLE_FLAGS)) == 0);
+ MyPgXact->vacuumFlags = pgxact->vacuumFlags;
+
result = true;
}
#define PROC_VACUUM_STATE_MASK \
(PROC_IN_VACUUM | PROC_IN_ANALYZE | PROC_VACUUM_FOR_WRAPAROUND)
+/*
+ * Flags that are valid to copy from another proc, the parallel leader
+ * process in practice. Currently, a flag that is set during parallel
+ * vacuum is allowed.
+ */
+#define PROC_COPYABLE_FLAGS (PROC_IN_VACUUM)
+
/*
* We allow a small number of "weak" relation locks (AccessShareLock,
* RowShareLock, RowExclusiveLock) to be recorded in the PGPROC structure