diff -U3 /tmp/cirrus-ci-build/src/test/regress/expected/select_distinct.out /tmp/cirrus-ci-build/src/test/regress/results/select_distinct.out --- /tmp/cirrus-ci-build/src/test/regress/expected/select_distinct.out 2024-09-04 14:46:20.081580926 +0000 +++ /tmp/cirrus-ci-build/src/test/regress/results/select_distinct.out 2024-09-04 14:49:05.953146606 +0000 @@ -232,18 +232,10 @@ -- Ensure we get a parallel plan EXPLAIN (costs off) SELECT DISTINCT four FROM tenk1; - QUERY PLAN ----------------------------------------------------- - Unique - -> Gather Merge - Workers Planned: 2 - -> Sort - Sort Key: four - -> HashAggregate - Group Key: four - -> Parallel Seq Scan on tenk1 -(8 rows) - +ERROR: deadlock detected +DETAIL: Process 19172 waits for AccessShareLock on relation 24361 of database 16384; blocked by process 19156. +Process 19156 waits for AccessExclusiveLock on relation 16418 of database 16384; blocked by process 19172. +HINT: See server log for query details. -- Ensure the parallel plan produces the correct results SELECT DISTINCT four FROM tenk1; four