You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by jo...@apache.org on 2022/12/29 12:58:01 UTC

[age] branch master updated: Change volatility category of range(), unnest(). (#418)

This is an automated email from the ASF dual-hosted git repository.

joshinnis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git


The following commit(s) were added to refs/heads/master by this push:
     new 49ac01f  Change volatility category of range(), unnest(). (#418)
49ac01f is described below

commit 49ac01f7429e61384eca44bdd3f2f153ae1e3d63
Author: Ahmar Zaidi <71...@users.noreply.github.com>
AuthorDate: Thu Dec 29 18:27:55 2022 +0530

    Change volatility category of range(), unnest(). (#418)
---
 age--1.1.0.sql | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/age--1.1.0.sql b/age--1.1.0.sql
index 1437cfa..73cfc05 100644
--- a/age--1.1.0.sql
+++ b/age--1.1.0.sql
@@ -4136,14 +4136,14 @@ AS 'MODULE_PATHNAME';
 CREATE FUNCTION ag_catalog.age_range(variadic "any")
 RETURNS agtype
 LANGUAGE c
-STABLE
+IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
 
 CREATE FUNCTION ag_catalog.age_unnest(agtype, block_types boolean = false)
     RETURNS SETOF agtype
     LANGUAGE c
-    STABLE
+    IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';