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:20:27 UTC

[age] branch master updated: Changed age_cos, age_tan and age_cot to Immutable from Stable (#409)

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 098e452  Changed age_cos, age_tan and age_cot to Immutable from Stable (#409)
098e452 is described below

commit 098e452d2da2169ebb9cd3d1ec481ac8f4706d98
Author: Pratik Kumar <95...@users.noreply.github.com>
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.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 6964dab..8958c37 100644
--- a/age--1.1.0.sql
+++ b/age--1.1.0.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';