Skip to content

Update to_regtype docs regarding error condition #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions doc/src/sgml/func.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -25460,11 +25460,12 @@ SELECT collation for ('foo' COLLATE "de_DE");
<returnvalue>regtype</returnvalue>
</para>
<para>
Translates a textual type name to its OID. A similar result is
Parses a string of text, extracts a potential type name from it, and
translates that name into an OID. A similar result is
obtained by casting the string to type <type>regtype</type> (see
<xref linkend="datatype-oid"/>); however, this function will return
<literal>NULL</literal> rather than throwing an error if the name is
not found.
<xref linkend="datatype-oid"/>). Failure to extract a valid potential
type name results in an error; however, if the extracted name is not
known to the system, this function will return <literal>NULL</literal>.
</para></entry>
</row>
</tbody>
Expand Down