diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-09-03 21:45:44 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-09-03 21:45:44 +0000 |
commit | 77f7763b55a89254f3b4be1f92402188bf2575b8 (patch) | |
tree | 95af88df05d1251ee25dd28cf826c664748daa14 /src/backend/libpq/pqformat.c | |
parent | 86f27321e25b5a1a7b6c78400e54f063525b07d5 (diff) |
Remove all traces of multibyte and locale options. Clean up comments
referring to "multibyte" where it really means character encoding.
Diffstat (limited to 'src/backend/libpq/pqformat.c')
-rw-r--r-- | src/backend/libpq/pqformat.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/backend/libpq/pqformat.c b/src/backend/libpq/pqformat.c index 01f8914bdbe..278835f2093 100644 --- a/src/backend/libpq/pqformat.c +++ b/src/backend/libpq/pqformat.c @@ -8,7 +8,7 @@ * formatting/conversion routines that are needed to produce valid messages. * Note in particular the distinction between "raw data" and "text"; raw data * is message protocol characters and binary values that are not subject to - * MULTIBYTE conversion, while text is converted by MULTIBYTE rules. + * character set conversion, while text is converted by character encoding rules. * * Incoming messages are read directly off the wire, as it were, but there * are still data-conversion tasks to be performed. @@ -16,7 +16,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pqformat.c,v 1.23 2002/08/29 03:22:01 tgl Exp $ + * $Id: pqformat.c,v 1.24 2002/09/03 21:45:42 petere Exp $ * *------------------------------------------------------------------------- */ @@ -27,20 +27,20 @@ * pq_sendbyte - append a raw byte to a StringInfo buffer * pq_sendint - append a binary integer to a StringInfo buffer * pq_sendbytes - append raw data to a StringInfo buffer - * pq_sendcountedtext - append a text string (with MULTIBYTE conversion) - * pq_sendstring - append a null-terminated text string (with MULTIBYTE) + * pq_sendcountedtext - append a text string (with character set conversion) + * pq_sendstring - append a null-terminated text string (with conversion) * pq_endmessage - send the completed message to the frontend * Note: it is also possible to append data to the StringInfo buffer using * the regular StringInfo routines, but this is discouraged since required - * MULTIBYTE conversion may not occur. + * character set conversion may not occur. * * Special-case message output: - * pq_puttextmessage - generate a MULTIBYTE-converted message in one step + * pq_puttextmessage - generate a character set-converted message in one step * * Message input: * pq_getint - get an integer from connection * pq_getstr - get a null terminated string from connection - * pq_getstr performs MULTIBYTE conversion on the collected string. + * pq_getstr performs character set conversion on the collected string. * Use the raw pqcomm.c routines pq_getstring or pq_getbytes * to fetch data without conversion. */ @@ -79,7 +79,7 @@ pq_sendbytes(StringInfo buf, const char *data, int datalen) } /* -------------------------------- - * pq_sendcountedtext - append a text string (with MULTIBYTE conversion) + * pq_sendcountedtext - append a text string (with character set conversion) * * The data sent to the frontend by this routine is a 4-byte count field * (the count includes itself, by convention) followed by the string. @@ -106,7 +106,7 @@ pq_sendcountedtext(StringInfo buf, const char *str, int slen) } /* -------------------------------- - * pq_sendstring - append a null-terminated text string (with MULTIBYTE) + * pq_sendstring - append a null-terminated text string (with conversion) * * NB: passed text string must be null-terminated, and so is the data * sent to the frontend. @@ -178,10 +178,10 @@ pq_endmessage(StringInfo buf) } /* -------------------------------- - * pq_puttextmessage - generate a MULTIBYTE-converted message in one step + * pq_puttextmessage - generate a character set-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 + * the message body is a null-terminated string to which encoding * conversion applies. * * returns 0 if OK, EOF if trouble |