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 a4388e8  Modified the volatility of functions age_atan, age_round and 
age_ceil to IMMUTABLE (#424)
a4388e8 is described below

commit a4388e8735c0b68dddc702763c9e6bee735d6259
Author: Vaibhav Sharma <[email protected]>
AuthorDate: Wed Dec 28 20:08:28 2022 +0530

    Modified the volatility of functions age_atan, age_round and age_ceil to 
IMMUTABLE (#424)
---
 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 0e331fa..1437cfa 100644
--- a/age--1.1.0.sql
+++ b/age--1.1.0.sql
@@ -3679,7 +3679,7 @@ AS 'MODULE_PATHNAME';
 CREATE FUNCTION ag_catalog.age_atan(variadic "any")
 RETURNS agtype
 LANGUAGE c
-STABLE
+IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
 
@@ -3707,14 +3707,14 @@ AS 'MODULE_PATHNAME';
 CREATE FUNCTION ag_catalog.age_round(variadic "any")
 RETURNS agtype
 LANGUAGE c
-STABLE
+IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
 
 CREATE FUNCTION ag_catalog.age_ceil(variadic "any")
 RETURNS agtype
 LANGUAGE c
-STABLE
+IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
 

Reply via email to