[SCM] PostGIS branch stable-3.5 updated. 3.5.0-28-g0b4dc6fce
git at osgeo.org
git at osgeo.org
Thu Dec 12 10:32:25 PST 2024
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, stable-3.5 has been updated
via 0b4dc6fce73a3ea87e6670053d0403918583cd0b (commit)
from 990d18c08866bfc44010533448760287c3389ae8 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0b4dc6fce73a3ea87e6670053d0403918583cd0b
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date: Thu Dec 12 10:32:16 2024 -0800
Remove false guarantees of hashes/merges from <> operator, references #5815
diff --git a/NEWS b/NEWS
index 4efb64ca8..3d9989ff3 100644
--- a/NEWS
+++ b/NEWS
@@ -23,6 +23,7 @@ PostgreSQL 12-17 required. GEOS 3.8+ required. Proj 6.1+ required.
- #5790, Non-schema qualified calls causing issue with
materialized views (Regina Obe)
- #5812, Performance regression in ST_Within (Paul Ramsey)
+- #5815, Remove hash/merge promise from <> operator (Paul Ramsey)
* Enhancements *
diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index 6b492a2d7..7394698c2 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -425,7 +425,7 @@ CREATE OPERATOR = (
CREATE OPERATOR <> (
LEFTARG = geometry, RIGHTARG = geometry, PROCEDURE = geometry_neq,
COMMUTATOR = '<>', NEGATOR = '=',
- RESTRICT = contsel, JOIN = contjoinsel, HASHES, MERGES
+ RESTRICT = contsel, JOIN = contjoinsel
);
-- Availability: 0.9.0
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
postgis/postgis.sql.in | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list