diff options
| author | Alvaro Herrera | 2011-11-17 21:27:54 +0000 |
|---|---|---|
| committer | Alvaro Herrera | 2011-11-17 21:27:54 +0000 |
| commit | b44dda715884487b92f14a0ea4addeaf163af802 (patch) | |
| tree | af34b63c95c07b7cfd0b85357a7d47c66f6ba6ed /contrib/citext | |
| parent | 67dc4eed42186ba6a2456578899bfd38d003201a (diff) | |
Don't quote language name
It's been deprecated for ages according to Tom, and it breaks now given
the previous patch anyway.
Per buildfarm
Diffstat (limited to 'contrib/citext')
| -rw-r--r-- | contrib/citext/citext--1.0.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/citext/citext--1.0.sql b/contrib/citext/citext--1.0.sql index 1dd19973d7..7db2e8d0ae 100644 --- a/contrib/citext/citext--1.0.sql +++ b/contrib/citext/citext--1.0.sql @@ -232,12 +232,12 @@ DEFAULT FOR TYPE citext USING hash AS CREATE FUNCTION citext_smaller(citext, citext) RETURNS citext AS 'MODULE_PATHNAME' -LANGUAGE 'C' IMMUTABLE STRICT; +LANGUAGE C IMMUTABLE STRICT; CREATE FUNCTION citext_larger(citext, citext) RETURNS citext AS 'MODULE_PATHNAME' -LANGUAGE 'C' IMMUTABLE STRICT; +LANGUAGE C IMMUTABLE STRICT; CREATE AGGREGATE min(citext) ( SFUNC = citext_smaller, |
