diff options
author | Noah Misch <noah@leadboat.com> | 2017-08-07 17:16:21 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2017-08-07 17:16:21 -0700 |
commit | b4a2eea030ba74ea84335c7d5bc999f693ffd9a4 (patch) | |
tree | 2b91eb7fb9142a19af3e91f7a26a2a6505c612d0 | |
parent | 8d6442377df5451a8db598788847e6a70b3b49ef (diff) | |
download | postgresql-b4a2eea030ba74ea84335c7d5bc999f693ffd9a4.tar.gz postgresql-b4a2eea030ba74ea84335c7d5bc999f693ffd9a4.zip |
Disclaim xmltable() support for non-UTF8 databases.
The xmltable() implementation mirrors xpath(), including its lack of
character encoding awareness.
-rw-r--r-- | doc/src/sgml/datatype.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index a3220490053..af5daef7ab2 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -4301,7 +4301,7 @@ SET xmloption TO { DOCUMENT | CONTENT }; <para> Some XML-related functions may not work at all on non-ASCII data when the server encoding is not UTF-8. This is known to be an - issue for <function>xpath()</> in particular. + issue for <function>xmltable()</> and <function>xpath()</> in particular. </para> </caution> </sect2> |