[SCM] PostGIS branch stable-3.6 updated. 3.6.1-13-gdff60191e
git at osgeo.org
git at osgeo.org
Wed Jan 14 06:24:53 PST 2026
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.6 has been updated
via dff60191e1c48d4c1b50482fe8cd527284db9d9c (commit)
via 1f1329217e01c7e412cf0829d0e660ede815638e (commit)
from 7d8ab147457afccb04f35057505b5843730af72e (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 dff60191e1c48d4c1b50482fe8cd527284db9d9c
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Jan 14 15:24:36 2026 +0100
Add surnames to spellcheck ignore list
diff --git a/.codespell.ignore b/.codespell.ignore
index de287e7b3..e75d0d639 100644
--- a/.codespell.ignore
+++ b/.codespell.ignore
@@ -35,3 +35,5 @@ techer
unknwn
nin
msdos
+Koordinates
+Pease
commit 1f1329217e01c7e412cf0829d0e660ede815638e
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Jan 14 15:01:14 2026 +0100
Stop using a tolerance for point-same functions
References #6023 in 3.6 branch (3.6.2dev)
This is partially reverting 80eefad13bd00d1e56d2bec36cd5140f87775ce4
diff --git a/liblwgeom/lwalgorithm.c b/liblwgeom/lwalgorithm.c
index 5cb90a04c..9f9e42503 100644
--- a/liblwgeom/lwalgorithm.c
+++ b/liblwgeom/lwalgorithm.c
@@ -31,33 +31,33 @@
int
p4d_same(const POINT4D *p1, const POINT4D *p2)
{
- return FP_EQUALS(p1->x, p2->x)
- && FP_EQUALS(p1->y, p2->y)
- && FP_EQUALS(p1->z, p2->z)
- && FP_EQUALS(p1->m, p2->m);
+ return p1->x == p2->x
+ && p1->y == p2->y
+ && p1->z == p2->z
+ && p1->m == p2->m;
}
int
p3d_same(const POINT3D *p1, const POINT3D *p2)
{
- return FP_EQUALS(p1->x, p2->x)
- && FP_EQUALS(p1->y, p2->y)
- && FP_EQUALS(p1->z, p2->z);
+ return p1->x == p2->x
+ && p1->y == p2->y
+ && p1->z == p2->z;
}
int
p3dz_same(const POINT3DZ *p1, const POINT3DZ *p2)
{
- return FP_EQUALS(p1->x, p2->x)
- && FP_EQUALS(p1->y, p2->y)
- && FP_EQUALS(p1->z, p2->z);
+ return p1->x == p2->x
+ && p1->y == p2->y
+ && p1->z == p2->z;
}
int
p2d_same(const POINT2D *p1, const POINT2D *p2)
{
- return FP_EQUALS(p1->x, p2->x)
- && FP_EQUALS(p1->y, p2->y);
+ return p1->x == p2->x
+ && p1->y == p2->y;
}
/**
-----------------------------------------------------------------------
Summary of changes:
.codespell.ignore | 2 ++
liblwgeom/lwalgorithm.c | 24 ++++++++++++------------
2 files changed, 14 insertions(+), 12 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list