1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-21 00:42:43 +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:
Heikki Linnakangas
2024-03-04 12:56:05 +02:00
parent 0dd094c4a0
commit 24eebc65c2
6 changed files with 14 additions and 19 deletions

View File

@@ -133,30 +133,27 @@ pq_sendbytes(StringInfo buf, const void *data, int datalen)
* pq_sendcountedtext - append a counted text string (with character set conversion)
*
* The data sent to the frontend by this routine is a 4-byte count field
* followed by the string. The count includes itself or not, as per the
* countincludesself flag (pre-3.0 protocol requires it to include itself).
* The passed text string need not be null-terminated, and the data sent
* to the frontend isn't either.
* followed by the string. The count does not include itself, as required by
* protocol version 3.0. The passed text string need not be null-terminated,
* and the data sent to the frontend isn't either.
* --------------------------------
*/
void
pq_sendcountedtext(StringInfo buf, const char *str, int slen,
bool countincludesself)
pq_sendcountedtext(StringInfo buf, const char *str, int slen)
{
int extra = countincludesself ? 4 : 0;
char *p;
p = pg_server_to_client(str, slen);
if (p != str) /* actual conversion has been done? */
{
slen = strlen(p);
pq_sendint32(buf, slen + extra);
pq_sendint32(buf, slen);
appendBinaryStringInfoNT(buf, p, slen);
pfree(p);
}
else
{
pq_sendint32(buf, slen + extra);
pq_sendint32(buf, slen);
appendBinaryStringInfoNT(buf, str, slen);
}
}