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/27 17:19:36 UTC

[age] branch master updated: Changed volatility types of age_substring, age_left and age_right to IMMUTABLE from STABLE (#408)

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 516e6af  Changed volatility types of age_substring, age_left and age_right to IMMUTABLE from STABLE (#408)
516e6af is described below

commit 516e6afa2daeb8fc759935c128763d7f93cd96b0
Author: Kamlesh Kumar <95...@users.noreply.github.com>
AuthorDate: Tue Dec 27 22:19:31 2022 +0500

    Changed volatility types of age_substring, age_left and age_right to IMMUTABLE from STABLE (#408)
---
 age--1.1.0.sql | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/age--1.1.0.sql b/age--1.1.0.sql
index 62df282..6964dab 100644
--- a/age--1.1.0.sql
+++ b/age--1.1.0.sql
@@ -3599,21 +3599,21 @@ AS 'MODULE_PATHNAME';
 CREATE FUNCTION ag_catalog.age_right(variadic "any")
 RETURNS agtype
 LANGUAGE c
-STABLE
+IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
 
 CREATE FUNCTION ag_catalog.age_left(variadic "any")
 RETURNS agtype
 LANGUAGE c
-STABLE
+IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
 
 CREATE FUNCTION ag_catalog.age_substring(variadic "any")
 RETURNS agtype
 LANGUAGE c
-STABLE
+IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';