mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08: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)
|
||||
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,
|
||||
|
Loading…
Reference in New Issue
Block a user