1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-30 06:01:21 +03:00

Still had a few MULTIBYTE problems when client encoding was

different from database's ...
This commit is contained in:
Tom Lane
1999-04-25 21:50:58 +00:00
parent 0d99c95388
commit 122923c97f
4 changed files with 40 additions and 9 deletions

View File

@@ -15,13 +15,13 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pqformat.c,v 1.2 1999/04/25 19:27:44 tgl Exp $
* $Id: pqformat.c,v 1.3 1999/04/25 21:50:56 tgl Exp $
*
*-------------------------------------------------------------------------
*/
/*
* INTERFACE ROUTINES
* Message output:
* Message assembly and output:
* pq_beginmessage - initialize StringInfo buffer
* pq_sendbyte - append a raw byte to a StringInfo buffer
* pq_sendint - append a binary integer to a StringInfo buffer
@@ -33,6 +33,9 @@
* the regular StringInfo routines, but this is discouraged since required
* MULTIBYTE conversion may not occur.
*
* Special-case message output:
* pq_puttextmessage - generate a MULTIBYTE-converted message in one step
*
* Message input:
* pq_getint - get an integer from connection
* pq_getstr - get a null terminated string from connection
@@ -209,6 +212,32 @@ pq_endmessage(StringInfo buf)
buf->data = NULL;
}
/* --------------------------------
* pq_puttextmessage - generate a MULTIBYTE-converted message in one step
*
* This is the same as the pqcomm.c routine pq_putmessage, except that
* the message body is a null-terminated string to which MULTIBYTE
* conversion applies.
*
* returns 0 if OK, EOF if trouble
* --------------------------------
*/
int
pq_puttextmessage(char msgtype, const char *str)
{
int slen = strlen(str);
#ifdef MULTIBYTE
const char *p;
p = (const char *) pg_server_to_client((unsigned char *) str, slen);
if (p != str) /* actual conversion has been done? */
{
str = p;
slen = strlen(str);
}
#endif
return pq_putmessage(msgtype, str, slen+1);
}
/* --------------------------------
* pq_getint - get an integer from connection
*