mirror of
https://github.com/postgres/postgres.git
synced 2025-11-18 02:02:55 +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:
@@ -85,7 +85,7 @@ SendFunctionResult(Datum retval, bool isnull, Oid rettype, int16 format)
|
||||
|
||||
getTypeOutputInfo(rettype, &typoutput, &typisvarlena);
|
||||
outputstr = OidOutputFunctionCall(typoutput, retval);
|
||||
pq_sendcountedtext(&buf, outputstr, strlen(outputstr), false);
|
||||
pq_sendcountedtext(&buf, outputstr, strlen(outputstr));
|
||||
pfree(outputstr);
|
||||
}
|
||||
else if (format == 1)
|
||||
|
||||
Reference in New Issue
Block a user