diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2020-06-11 10:26:12 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2020-06-11 10:26:12 +0200 |
commit | 5333e014ab943b201fe71cfaf409419c204f36be (patch) | |
tree | 020920ae666e1ba04136cdd7efe7e4a72228a467 /doc/src | |
parent | a3b2bf1fe7ce7cf88af6af2c100c6ed61c976780 (diff) | |
download | postgresql-5333e014ab943b201fe71cfaf409419c204f36be.tar.gz postgresql-5333e014ab943b201fe71cfaf409419c204f36be.zip |
Remove deprecated syntax from CREATE/DROP LANGUAGE
Remove the option to specify the language name as a single-quoted
string. This has been obsolete since ee8ed85da3b. Removing it allows
better grammar refactoring.
The syntax of the CREATE FUNCTION LANGUAGE clause is not changed.
Discussion: https://www.postgresql.org/message-id/flat/163c00a5-f634-ca52-fc7c-0e53deda8735%402ndquadrant.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_language.sgml | 5 | ||||
-rw-r--r-- | doc/src/sgml/ref/drop_language.sgml | 3 |
2 files changed, 1 insertions, 7 deletions
diff --git a/doc/src/sgml/ref/create_language.sgml b/doc/src/sgml/ref/create_language.sgml index 44d14c0ba72..10d1533d6d8 100644 --- a/doc/src/sgml/ref/create_language.sgml +++ b/doc/src/sgml/ref/create_language.sgml @@ -110,11 +110,6 @@ CREATE [ OR REPLACE ] [ TRUSTED ] [ PROCEDURAL ] LANGUAGE <replaceable class="pa The name of the new procedural language. The name must be unique among the languages in the database. </para> - - <para> - For backward compatibility, the name can be enclosed by single - quotes. - </para> </listitem> </varlistentry> diff --git a/doc/src/sgml/ref/drop_language.sgml b/doc/src/sgml/ref/drop_language.sgml index 976f3a0ce1a..4705836ac79 100644 --- a/doc/src/sgml/ref/drop_language.sgml +++ b/doc/src/sgml/ref/drop_language.sgml @@ -63,8 +63,7 @@ DROP [ PROCEDURAL ] LANGUAGE [ IF EXISTS ] <replaceable class="parameter">name</ <term><replaceable class="parameter">name</replaceable></term> <listitem> <para> - The name of an existing procedural language. For backward - compatibility, the name can be enclosed by single quotes. + The name of an existing procedural language. </para> </listitem> </varlistentry> |