diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-11-17 14:20:13 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-11-17 14:25:18 -0500 |
commit | 67dc4eed42186ba6a2456578899bfd38d003201a (patch) | |
tree | c01313d1fb6f55e7cac3a32efe28dcc42d4e8370 /doc/src | |
parent | ee3ef8f30c4241e95f761c41501979dfd4f22c6a (diff) | |
download | postgresql-67dc4eed42186ba6a2456578899bfd38d003201a.tar.gz postgresql-67dc4eed42186ba6a2456578899bfd38d003201a.zip |
Remove ancient downcasing code from procedural language operations.
A very long time ago, language names were specified as literals rather
than identifiers, so this code was added to do case-folding. But that
style has ben deprecated for many years so this isn't needed any more.
Language names will still be downcased when specified as unquoted
identifiers, but quoted identifiers or the old style using string
literals will be left as-is.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_language.sgml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_language.sgml b/doc/src/sgml/ref/create_language.sgml index 6e72892375b..0995b13623c 100644 --- a/doc/src/sgml/ref/create_language.sgml +++ b/doc/src/sgml/ref/create_language.sgml @@ -143,9 +143,8 @@ CREATE [ OR REPLACE ] [ TRUSTED ] [ PROCEDURAL ] LANGUAGE <replaceable class="pa <listitem> <para> - The name of the new procedural language. The language name is - case insensitive. The name must be unique among the languages - in the database. + The name of the new procedural language. + The name must be unique among the languages in the database. </para> <para> |