mirror of
https://github.com/postgres/postgres.git
synced 2025-10-10 00:03:27 -04:00
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
This commit is contained in:
parent
67dc4eed42
commit
b44dda7158
@ -232,12 +232,12 @@ DEFAULT FOR TYPE citext USING hash AS
|
|||||||
CREATE FUNCTION citext_smaller(citext, citext)
|
CREATE FUNCTION citext_smaller(citext, citext)
|
||||||
RETURNS citext
|
RETURNS citext
|
||||||
AS 'MODULE_PATHNAME'
|
AS 'MODULE_PATHNAME'
|
||||||
LANGUAGE 'C' IMMUTABLE STRICT;
|
LANGUAGE C IMMUTABLE STRICT;
|
||||||
|
|
||||||
CREATE FUNCTION citext_larger(citext, citext)
|
CREATE FUNCTION citext_larger(citext, citext)
|
||||||
RETURNS citext
|
RETURNS citext
|
||||||
AS 'MODULE_PATHNAME'
|
AS 'MODULE_PATHNAME'
|
||||||
LANGUAGE 'C' IMMUTABLE STRICT;
|
LANGUAGE C IMMUTABLE STRICT;
|
||||||
|
|
||||||
CREATE AGGREGATE min(citext) (
|
CREATE AGGREGATE min(citext) (
|
||||||
SFUNC = citext_smaller,
|
SFUNC = citext_smaller,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user