diff options
author | Peter Eisentraut | 2022-07-04 05:25:26 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-07-04 05:31:54 +0000 |
commit | 4e85b97304a74f5f0fc82136b95f0d5a67b7fd53 (patch) | |
tree | d3c3600021a127f1d5b86cb5d92ebf182642cd02 | |
parent | 255625df1d3a9823c891d585fbf5c3bb913182eb (diff) |
Fix attlen in RowDescription of BASE_BACKUP response
Should be 8 for int8, not -1.
Reviewed-by: Nathan Bossart <[email protected]>
Discussion: https://www.postgresql.org/message-id/flat/[email protected]
-rw-r--r-- | src/backend/replication/basebackup_copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |