agora inbox for [email protected]help / color / mirror / Atom feed
Re: cheaper snapshots redux 966+ messages / 2 participants [nested] [flat]
* Re: cheaper snapshots redux @ 2011-09-10 12:04 Amit kapila <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Amit kapila @ 2011-09-10 12:04 UTC (permalink / raw) To: [email protected] <[email protected]>; pgsql-hackers; +Cc: pgsql-hackers >> 4. Won't it effect if we don't update xmin everytime and just noting the committed XIDs. The reason I am asking is that it is used in tuple visibility check so with new idea in some cases instead of just returning >> from begining by checking xmin it has to go through the committed XID list. >> I understand that there may be less cases or the improvement by your idea can supesede this minimal effect. However some cases can be defeated. >The snapshot xmin has to be up to date. I'm not planning to break that because it would be wrong. In the approach mentioned in your idea, it mentioned that once after taking snapshot, only committed XIDs will be updated and sometimes snapshot itself. So when the xmin will be updated according to your idea. >RecentGlobalXmin doesn't need to be completely up to date, and in fact recomputing it on every snapshot becomes prohibitively expensive with this approach. I'm still struggling with the best way to handle that. RecentGlobalXmin and RecentXmin are mostly updated with snapshots xmin and that too outside ProcArrayLock, so why it will be expensive if you have updated xmin. With Regards, Amit Kapila. *************************************************************************************** This e-mail and attachments contain confidential information from HUAWEI, which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction, or dissemination) by persons other than the intended recipient's) is prohibited. If you receive this e-mail in error, please notify the sender by phone or email immediately and delete it! ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough @ 2026-03-12 15:13 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 966+ messages in thread From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw) --- src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c index 61cd7c52ae6..73aa6f0589c 100644 --- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c +++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c @@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation, bool *isnull; desc = RelationGetDescr(relation); - attrs = palloc0_array(Datum, desc->natts); - isnull = palloc0_array(bool, desc->natts); + attrs = palloc_array(Datum, desc->natts); + isnull = palloc_array(bool, desc->natts); heap_deform_tuple(tuple, desc, attrs, isnull); -- 2.47.3 --pnppmxqkefjd4hu2 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc"; filename*1="fbot.txt" ^ permalink raw reply [nested|flat] 966+ messages in thread
end of thread, other threads:[~2026-03-12 15:13 UTC | newest] Thread overview: 966+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2011-09-10 12:04 Re: cheaper snapshots redux Amit kapila <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]> 2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[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