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

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

commit 436e2bef84dab28148c455e2ae993e5d9d34b2fe
Author: Pratik Kumar <[email protected]>
AuthorDate: Tue Dec 27 22:50:21 2022 +0530

    Changed age_cos, age_tan and age_cot to Immutable from Stable (#409)
---
 age--1.1.1.sql | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/age--1.1.1.sql b/age--1.1.1.sql
index 3f74dd8..bc4f09b 100644
--- a/age--1.1.1.sql
+++ b/age--1.1.1.sql
@@ -3644,21 +3644,21 @@ AS 'MODULE_PATHNAME';
 CREATE FUNCTION ag_catalog.age_cos(variadic "any")
 RETURNS agtype
 LANGUAGE c
-STABLE
+IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
 
 CREATE FUNCTION ag_catalog.age_tan(variadic "any")
 RETURNS agtype
 LANGUAGE c
-STABLE
+IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
 
 CREATE FUNCTION ag_catalog.age_cot(variadic "any")
 RETURNS agtype
 LANGUAGE c
-STABLE
+IMMUTABLE
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
 

Reply via email to