From 4e85b97304a74f5f0fc82136b95f0d5a67b7fd53 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 4 Jul 2022 07:25:26 +0200 Subject: [PATCH] Fix attlen in RowDescription of BASE_BACKUP response Should be 8 for int8, not -1. Reviewed-by: Nathan Bossart Discussion: https://www.postgresql.org/message-id/flat/7e4fdbdc-699c-4cd0-115d-fb78a957fc22@enterprisedb.com --- src/backend/replication/basebackup_copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/replication/basebackup_copy.c b/src/backend/replication/basebackup_copy.c index cabb0772402..1eed9d8c3f7 100644 --- a/src/backend/replication/basebackup_copy.c +++ b/src/backend/replication/basebackup_copy.c @@ -361,7 +361,7 @@ SendXlogRecPtrResult(XLogRecPtr ptr, TimeLineID tli) * would not be wide enough for this, as TimeLineID is unsigned. */ pq_sendint32(&buf, INT8OID); /* type oid */ - pq_sendint16(&buf, -1); + pq_sendint16(&buf, 8); pq_sendint32(&buf, 0); pq_sendint16(&buf, 0); pq_endmessage(&buf);