Fix parallel BRIN builds with synchronized scans
authorTomas Vondra <tomas.vondra@postgresql.org>
Sat, 30 Dec 2023 21:59:42 +0000 (22:59 +0100)
committerTomas Vondra <tomas.vondra@postgresql.org>
Sat, 30 Dec 2023 22:17:01 +0000 (23:17 +0100)
commitcb44a8345e7c248cf4158f2702fd9c9358399cfb
treeb33aac373edf141423d52a64039d005d83247d47
parent6c63bcbf3ccf555f02a8fd8b2acaf01a6e94cb97
Fix parallel BRIN builds with synchronized scans

The brinbuildCallbackParallel callback used by parallel BRIN builds did
not consider that the parallel table scans may be synchronized, starting
from an arbitrary block and then wrap around.

If this happened and the scan actually did wrap around, tuples from the
beginning of the table were added to the last range produced by the same
worker. The index would be missing range at the beginning of the table,
while the last range would be too wide. This would not produce incorrect
query results, but it'd be less efficient.

Fixed by checking for both past and future ranges in the callback. The
worker may produce multiple summaries for the same page range, but the
leader will merge them as if the summaries came from different workers.

Discussion: https://postgr.es/m/c2ee7d69-ce17-43f2-d1a0-9811edbda6e6%40enterprisedb.com
src/backend/access/brin/brin.c