aboutsummaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref/create_language.sgml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/sgml/ref/create_language.sgml')
-rw-r--r--doc/src/sgml/ref/create_language.sgml20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/src/sgml/ref/create_language.sgml b/doc/src/sgml/ref/create_language.sgml
index 92dae40ecc6..6bb69cf0ef6 100644
--- a/doc/src/sgml/ref/create_language.sgml
+++ b/doc/src/sgml/ref/create_language.sgml
@@ -41,7 +41,7 @@ CREATE [ OR REPLACE ] [ TRUSTED ] [ PROCEDURAL ] LANGUAGE <replaceable class="pa
<para>
As of <productname>PostgreSQL</productname> 9.1, most procedural
languages have been made into <quote>extensions</quote>, and should
- therefore be installed with <xref linkend="sql-createextension">
+ therefore be installed with <xref linkend="sql-createextension"/>
not <command>CREATE LANGUAGE</command>. Direct use of
<command>CREATE LANGUAGE</command> should now be confined to
extension installation scripts. If you have a <quote>bare</quote>
@@ -55,7 +55,7 @@ CREATE [ OR REPLACE ] [ TRUSTED ] [ PROCEDURAL ] LANGUAGE <replaceable class="pa
<para>
<command>CREATE LANGUAGE</command> effectively associates the
language name with handler function(s) that are responsible for executing
- functions written in the language. Refer to <xref linkend="plhandler">
+ functions written in the language. Refer to <xref linkend="plhandler"/>
for more information about language handlers.
</para>
@@ -178,7 +178,7 @@ CREATE [ OR REPLACE ] [ TRUSTED ] [ PROCEDURAL ] LANGUAGE <replaceable class="pa
<para><replaceable class="parameter">inline_handler</replaceable> is the
name of a previously registered function that will be called
to execute an anonymous code block
- (<xref linkend="sql-do"> command)
+ (<xref linkend="sql-do"/> command)
in this language.
If no <replaceable class="parameter">inline_handler</replaceable>
function is specified, the language does not support anonymous code
@@ -230,12 +230,12 @@ CREATE [ OR REPLACE ] [ TRUSTED ] [ PROCEDURAL ] LANGUAGE <replaceable class="pa
<title>Notes</title>
<para>
- Use <xref linkend="sql-droplanguage"> to drop procedural languages.
+ Use <xref linkend="sql-droplanguage"/> to drop procedural languages.
</para>
<para>
The system catalog <classname>pg_language</classname> (see <xref
- linkend="catalog-pg-language">) records information about the
+ linkend="catalog-pg-language"/>) records information about the
currently installed languages. Also, the <application>psql</application>
command <command>\dL</command> lists the installed languages.
</para>
@@ -313,11 +313,11 @@ CREATE LANGUAGE plsample
<title>See Also</title>
<simplelist type="inline">
- <member><xref linkend="sql-alterlanguage"></member>
- <member><xref linkend="sql-createfunction"></member>
- <member><xref linkend="sql-droplanguage"></member>
- <member><xref linkend="sql-grant"></member>
- <member><xref linkend="sql-revoke"></member>
+ <member><xref linkend="sql-alterlanguage"/></member>
+ <member><xref linkend="sql-createfunction"/></member>
+ <member><xref linkend="sql-droplanguage"/></member>
+ <member><xref linkend="sql-grant"/></member>
+ <member><xref linkend="sql-revoke"/></member>
</simplelist>
</refsect1>
</refentry>