Skip to content

Commit e6335e9

Browse files
committed
Fix COMMENT syntax for 9.5/9.6
1 parent 01838f3 commit e6335e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

unit--6--7.sql.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ CREATE FUNCTION unit_diff(unit, unit)
102102
AS '$libdir/unit'
103103
LANGUAGE C IMMUTABLE STRICT;
104104

105-
COMMENT ON FUNCTION unit_diff IS 'returns difference of two units as float8 for use in the unitrange type';
105+
COMMENT ON FUNCTION unit_diff(unit, unit) IS 'returns difference of two units as float8 for use in the unitrange type';
106106

107107
CREATE TYPE unitrange AS RANGE (
108108
SUBTYPE = unit,

unit--7.sql.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ CREATE FUNCTION unit_diff(unit, unit)
583583
AS '$libdir/unit'
584584
LANGUAGE C IMMUTABLE STRICT;
585585

586-
COMMENT ON FUNCTION unit_diff IS 'returns difference of two units as float8 for use in the unitrange type';
586+
COMMENT ON FUNCTION unit_diff(unit, unit) IS 'returns difference of two units as float8 for use in the unitrange type';
587587

588588
CREATE TYPE unitrange AS RANGE (
589589
SUBTYPE = unit,

0 commit comments

Comments
 (0)