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:26:35 UTC

[age] branch master updated: Changed the definition of graphid_eq, graphid_ne, and graphid_lt from Stable to Immutable (#415)

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 30edc59  Changed the definition of graphid_eq, graphid_ne, and graphid_lt from Stable to Immutable (#415)
30edc59 is described below

commit 30edc59d759d0e869aa0fbf644551d17f1d5a359
Author: Fahad Zaheer <52...@users.noreply.github.com>
AuthorDate: Tue Dec 27 22:26:29 2022 +0500

    Changed the definition of graphid_eq, graphid_ne, and graphid_lt from Stable to Immutable (#415)
---
 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 9318f40..52277ce 100644
--- a/age--1.1.0.sql
+++ b/age--1.1.0.sql
@@ -185,7 +185,7 @@ CREATE TYPE graphid (
 CREATE FUNCTION ag_catalog.graphid_eq(graphid, graphid)
 RETURNS boolean
 LANGUAGE c
-STABLE
+IMMUTABLE
 RETURNS NULL ON NULL INPUT
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
@@ -205,7 +205,7 @@ CREATE OPERATOR = (
 CREATE FUNCTION ag_catalog.graphid_ne(graphid, graphid)
 RETURNS boolean
 LANGUAGE c
-STABLE
+IMMUTABLE
 RETURNS NULL ON NULL INPUT
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';
@@ -223,7 +223,7 @@ CREATE OPERATOR <> (
 CREATE FUNCTION ag_catalog.graphid_lt(graphid, graphid)
 RETURNS boolean
 LANGUAGE c
-STABLE
+IMMUTABLE
 RETURNS NULL ON NULL INPUT
 PARALLEL SAFE
 AS 'MODULE_PATHNAME';