Skip to content

Commit

Permalink
Changed age_head, age_last and age_properties to IMMUTABLE (apache#406)
Browse files Browse the repository at this point in the history
Co-authored-by: Matheus Matsumoto <matheusmatsumoto@Matheuss-MacBook-Air.local>
  • Loading branch information
2 people authored and MuhammadTahaNaveed committed Feb 10, 2023
1 parent 44ad0ee commit 9b72532
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions age--1.1.1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3441,23 +3441,23 @@ AS 'MODULE_PATHNAME';
CREATE FUNCTION ag_catalog.age_head(agtype)
RETURNS agtype
LANGUAGE c
STABLE
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';

CREATE FUNCTION ag_catalog.age_last(agtype)
RETURNS agtype
LANGUAGE c
STABLE
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';

CREATE FUNCTION ag_catalog.age_properties(agtype)
RETURNS agtype
LANGUAGE c
STABLE
IMMUTABLE
RETURNS NULL ON NULL INPUT
PARALLEL SAFE
AS 'MODULE_PATHNAME';
Expand Down

0 comments on commit 9b72532

Please sign in to comment.