diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-10-19 21:16:39 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-10-20 19:26:10 -0400 |
commit | 1ff01b3902cbf5b22d1a439014202499c21b2994 (patch) | |
tree | 0eb543455c6b64c46371638230cb7b5ca93fe667 /doc/src/sgml/ref/create_function.sgml | |
parent | 36ea99c84d856177ec307307788a279cc600566e (diff) |
Convert SGML IDs to lower case
IDs in SGML are case insensitive, and we have accumulated a mix of upper
and lower case IDs, including different variants of the same ID. In
XML, these will be case sensitive, so we need to fix up those
differences. Going to all lower case seems most straightforward, and
the current build process already makes all anchors and lower case
anyway during the SGML->XML conversion, so this doesn't create any
difference in the output right now. A future XML-only build process
would, however, maintain any mixed case ID spellings in the output, so
that is another reason to clean this up beforehand.
Author: Alexander Lakhin <exclusion@gmail.com>
Diffstat (limited to 'doc/src/sgml/ref/create_function.sgml')
-rw-r--r-- | doc/src/sgml/ref/create_function.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml index 97cb9b7fc8a..970dc133595 100644 --- a/doc/src/sgml/ref/create_function.sgml +++ b/doc/src/sgml/ref/create_function.sgml @@ -2,7 +2,7 @@ doc/src/sgml/ref/create_function.sgml --> -<refentry id="SQL-CREATEFUNCTION"> +<refentry id="sql-createfunction"> <indexterm zone="sql-createfunction"> <primary>CREATE FUNCTION</primary> </indexterm> @@ -543,7 +543,7 @@ CREATE [ OR REPLACE ] FUNCTION the SQL function. The string <replaceable class="parameter">obj_file</replaceable> is the name of the shared library file containing the compiled C function, and is interpreted - as for the <xref linkend="SQL-LOAD"> command. The string + as for the <xref linkend="sql-load"> command. The string <replaceable class="parameter">link_symbol</replaceable> is the function's link symbol, that is, the name of the function in the C language source code. If the link symbol is omitted, it is assumed |