Commit 61d2ebdb authored by Teodor Sigaev's avatar Teodor Sigaev

Fix a typo

Erik Rijkers
parent 3187d6de
...@@ -1832,12 +1832,12 @@ ...@@ -1832,12 +1832,12 @@
false, extra characters after the identifier are ignored. This is useful false, extra characters after the identifier are ignored. This is useful
for parsing identifiers for objects like functions and arrays that may for parsing identifiers for objects like functions and arrays that may
have trailing characters. By default, extra characters after the last have trailing characters. By default, extra characters after the last
identifier are considered an error, but if second parameter is false, identifier are considered an error, but if the second parameter is false,
then chararacters after last identifier are ignored. Note that this then the characters after the last identifier are ignored. Note that this
function does not truncate quoted identifiers. If you care about that function does not truncate quoted identifiers. If you care about that
you should cast the result of this function to name[]. A non-printable you should cast the result of this function to name[]. Non-printable
chararacters (like 0 to 31) are displayed as hexadecimal codes always, characters (like 0 to 31) are always displayed as hexadecimal codes,
what can be different from PostgreSQL internal SQL identifiers which can be different from PostgreSQL internal SQL identifiers
processing, when the original escaped value is displayed. processing, when the original escaped value is displayed.
</entry> </entry>
<entry><literal>parse_ident('"SomeSchema".someTable')</literal></entry> <entry><literal>parse_ident('"SomeSchema".someTable')</literal></entry>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment