mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
doc: \123 and \x12 escapes in COPY are in database encoding.
The backslash sequences, including \123 and \x12 escapes, are interpreted after encoding conversion. The docs failed to mention that. Backpatch to all supported versions. Reported-by: Andreas Grob Discussion: https://www.postgresql.org/message-id/17142-9181542ca1df75ab%40postgresql.org
This commit is contained in:
parent
6f8127b739
commit
e9a79c220b
@ -636,12 +636,12 @@ COPY <replaceable class="parameter">count</replaceable>
|
||||
<row>
|
||||
<entry><literal>\</literal><replaceable>digits</replaceable></entry>
|
||||
<entry>Backslash followed by one to three octal digits specifies
|
||||
the character with that numeric code</entry>
|
||||
the byte with that numeric code</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>\x</literal><replaceable>digits</replaceable></entry>
|
||||
<entry>Backslash <literal>x</literal> followed by one or two hex digits specifies
|
||||
the character with that numeric code</entry>
|
||||
the byte with that numeric code</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
@ -673,6 +673,12 @@ COPY <replaceable class="parameter">count</replaceable>
|
||||
or vice versa).
|
||||
</para>
|
||||
|
||||
<para>
|
||||
All backslash sequences are interpreted after encoding conversion.
|
||||
The bytes specified with the octal and hex-digit backslash sequences must
|
||||
form valid characters in the database encoding.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
<command>COPY TO</command> will terminate each row with a Unix-style
|
||||
newline (<quote><literal>\n</literal></quote>). Servers running on Microsoft Windows instead
|
||||
|
Loading…
x
Reference in New Issue
Block a user