agora inbox for [email protected]  
help / color / mirror / Atom feed
[PATCH v8 7/7] Allow to print raw parse tree.
969+ messages / 2 participants
[nested] [flat]

* [PATCH v8 7/7] Allow to print raw parse tree.
@ 2023-09-25 05:01  Tatsuo Ishii <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Tatsuo Ishii @ 2023-09-25 05:01 UTC (permalink / raw)

---
 src/backend/tcop/postgres.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index 21b9763183..3e3653816e 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -651,6 +651,10 @@ pg_parse_query(const char *query_string)
 	}
 #endif
 
+	if (Debug_print_parse)
+		elog_node_display(LOG, "raw parse tree", raw_parsetree_list,
+						  Debug_pretty_print);
+
 	TRACE_POSTGRESQL_QUERY_PARSE_DONE(query_string);
 
 	return raw_parsetree_list;
-- 
2.25.1


----Next_Part(Mon_Sep_25_14_26_30_2023_752)----





^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread

* [PATCH 7/9] no need for palloc0 here -- simple palloc is enough
@ 2026-03-12 15:13  Álvaro Herrera <[email protected]>
  0 siblings, 0 replies; 969+ messages in thread

From: Álvaro Herrera @ 2026-03-12 15:13 UTC (permalink / raw)

---
 src/backend/replication/pgoutput_repack/pgoutput_repack.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/replication/pgoutput_repack/pgoutput_repack.c b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
index 61cd7c52ae6..73aa6f0589c 100644
--- a/src/backend/replication/pgoutput_repack/pgoutput_repack.c
+++ b/src/backend/replication/pgoutput_repack/pgoutput_repack.c
@@ -197,8 +197,8 @@ store_change(LogicalDecodingContext *ctx, Relation relation,
 		bool	   *isnull;
 
 		desc = RelationGetDescr(relation);
-		attrs = palloc0_array(Datum, desc->natts);
-		isnull = palloc0_array(bool, desc->natts);
+		attrs = palloc_array(Datum, desc->natts);
+		isnull = palloc_array(bool, desc->natts);
 
 		heap_deform_tuple(tuple, desc, attrs, isnull);
 
-- 
2.47.3


--pnppmxqkefjd4hu2
Content-Type: text/plain; charset=utf-8
Content-Disposition: attachment;
	filename*0="0008-XXX-devel-comment-heap_deform_tuple-slot_deform_tupl.noc";
	filename*1="fbot.txt"



^ permalink  raw  reply  [nested|flat] 969+ messages in thread


end of thread, other threads:[~2026-03-12 15:13 UTC | newest]

Thread overview: 969+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2023-09-25 05:01 [PATCH v8 7/7] Allow to print raw parse tree. Tatsuo Ishii <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro Herrera <[email protected]>
2026-03-12 15:13 [PATCH 7/9] no need for palloc0 here -- simple palloc is enough Álvaro 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