Commit b44dda71 authored by Alvaro Herrera's avatar Alvaro Herrera

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
parent 67dc4eed
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment