diff options
author | Heikki Linnakangas | 2024-03-04 10:56:05 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2024-03-04 10:56:05 +0000 |
commit | 24eebc65c26cfcc0ea5b8a95b61fa2fda6118e68 (patch) | |
tree | e49efcd9ccb469e9b8850b312bfa3fd497d308b8 /src/backend/replication | |
parent | 0dd094c4a0a4766cfb3c4932fa32af906229e3e3 (diff) |
Remove unused 'countincludesself' argument to pq_sendcountedtext()
It has been unused since we removed support for protocol version 2.
Diffstat (limited to 'src/backend/replication')
-rw-r--r-- | src/backend/replication/logical/proto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/proto.c b/src/backend/replication/logical/proto.c index f273005c15d..95c09c95167 100644 --- a/src/backend/replication/logical/proto.c +++ b/src/backend/replication/logical/proto.c @@ -851,7 +851,7 @@ logicalrep_write_tuple(StringInfo out, Relation rel, TupleTableSlot *slot, pq_sendbyte(out, LOGICALREP_COLUMN_TEXT); outputstr = OidOutputFunctionCall(typclass->typoutput, values[i]); - pq_sendcountedtext(out, outputstr, strlen(outputstr), false); + pq_sendcountedtext(out, outputstr, strlen(outputstr)); pfree(outputstr); } |