agora inbox for [email protected]help / color / mirror / Atom feed
Re: Google SoC--Idea Request 963+ messages / 2 participants [nested] [flat]
* Re: Google SoC--Idea Request @ 2006-04-16 08:29 Dave Page <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Dave Page @ 2006-04-16 08:29 UTC (permalink / raw) To: [email protected]; pgsql-hackers -----Original Message----- From: "Jonah H. Harris"<[email protected]> Sent: 15/04/06 20:06:27 To: "Pgsql Hackers"<[email protected]> Subject: [HACKERS] Google SoC--Idea Request > As such, we need to quickly put together a list of oh, 15-20 midlevel > project ideas. Another thought - a nice C++ project, requiring minimal previous knowledge of existing code would be to add a query builder to pgAdmin. Regards, Dave -----Unmodified Original Message----- Hey everyone, I know we started a discussion a month or so ago regarding ideas for SoC projects. However, after reading through the thread, I didn't see us nail down any actual items. As such, we need to quickly put together a list of oh, 15-20 midlevel project ideas. I'm sure we can pull some off the TODO list, but we should also look at project ideas for porting some of the most used third-party OSS software to PostgreSQL too (portals, CMS systems, accounting systems, etc.). All ideas welcome! -- Jonah H. Harris, Database Internals Architect EnterpriseDB Corporation 732.331.1324 ---------------------------(end of broadcast)--------------------------- TIP 2: Don't 'kill -9' the postmaster ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
* [PATCH 1/2] Add missing initialization. @ 2026-04-13 09:28 Antonin Houska <[email protected]> 0 siblings, 0 replies; 963+ messages in thread From: Antonin Houska @ 2026-04-13 09:28 UTC (permalink / raw) Backend can check the variable before the worker could have the chance to initialize it. --- src/backend/commands/repack.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index 58e3867246f..67364cc60e3 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -3311,6 +3311,7 @@ start_repack_decoding_worker(Oid relid) BUFFERALIGN(REPACK_ERROR_QUEUE_SIZE); seg = dsm_create(size, 0); shared = (DecodingWorkerShared *) dsm_segment_address(seg); + shared->initialized = false; shared->lsn_upto = InvalidXLogRecPtr; shared->done = false; SharedFileSetInit(&shared->sfs, seg); -- 2.47.3 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-Remove-dsm_seg-from-DecodingWorkerShared.patch ^ permalink raw reply [nested|flat] 963+ messages in thread
end of thread, other threads:[~2026-04-13 09:28 UTC | newest] Thread overview: 963+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2006-04-16 08:29 Re: Google SoC--Idea Request Dave Page <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]> 2026-04-13 09:28 [PATCH 1/2] Add missing initialization. Antonin Houska <[email protected]>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox