From: Robert Haas Date: Tue, 8 Jun 2010 20:12:59 +0000 (+0000) Subject: Make procedural language handler reference C-language function docs. X-Git-Tag: REL9_0_BETA3~150 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8de14adc5f28a7eaa47d92896cf1797728902857;p=postgresql Make procedural language handler reference C-language function docs. Based on suggestions from Jonathan Leto and Joshua Tolley. --- diff --git a/doc/src/sgml/plhandler.sgml b/doc/src/sgml/plhandler.sgml index 058eefbd65..8be93ac1ac 100644 --- a/doc/src/sgml/plhandler.sgml +++ b/doc/src/sgml/plhandler.sgml @@ -1,4 +1,4 @@ - + Writing A Procedural Language Handler @@ -28,6 +28,8 @@ and returning the type language_handler. This special pseudotype identifies the function as a call handler and prevents it from being called directly in SQL commands. + For more details on C language calling conventions and dynamic loading, + see .