diff -U3 /tmp/cirrus-ci-build/src/test/regress/expected/btree_index.out /tmp/cirrus-ci-build/src/test/regress/results/btree_index.out --- /tmp/cirrus-ci-build/src/test/regress/expected/btree_index.out 2024-12-24 07:43:04.169778473 +0000 +++ /tmp/cirrus-ci-build/src/test/regress/results/btree_index.out 2024-12-24 07:47:35.479861429 +0000 @@ -158,13 +158,10 @@ set enable_bitmapscan to false; explain (costs off) select hundred, twenty from tenk1 where hundred < 48 order by hundred desc limit 1; - QUERY PLAN --------------------------------------------------------- - Limit - -> Index Scan Backward using tenk1_hundred on tenk1 - Index Cond: (hundred < 48) -(3 rows) - +ERROR: deadlock detected +DETAIL: Process 24182 waits for AccessShareLock on relation 25247 of database 16384; blocked by process 24171. +Process 24171 waits for AccessExclusiveLock on relation 16418 of database 16384; blocked by process 24182. +HINT: See server log for query details. select hundred, twenty from tenk1 where hundred < 48 order by hundred desc limit 1; hundred | twenty ---------+--------