mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Remove unused 'countincludesself' argument to pq_sendcountedtext()
It has been unused since we removed support for protocol version 2.
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user