[PostGIS] #5815: hash operator error
PostGIS
trac at osgeo.org
Thu Dec 5 13:17:37 PST 2024
#5815: hash operator error
---------------------+---------------------------
Reporter: robe | Owner: pramsey
Type: defect | Status: new
Priority: blocker | Milestone: PostGIS 3.5.1
Component: postgis | Version: 3.4.x
Keywords: |
---------------------+---------------------------
On IRC velix mentioned this bug in PostGIS 3.5.0.
I haven't tested prior versions but I suspect is a regression.
To generate the error:
{{{
WITH lines AS (SELECT ST_GeomFromText('LINESTRING(1 2, 3 4)') AS geom
UNION ALL
SELECT ST_GeomFromText('LINESTRING(6 5, 7 8)') AS geom
)
SELECT t1.geom, t2.geom
FROM lines AS t1, lines AS t2
WHERE t1.geom <> t2.geom;
}}}
Error is - I think hash operator id might change
{{{
ERROR: could not find hash function for hash operator 1192459
}}}
--
Ticket URL: <https://trac.osgeo.org/postgis/ticket/5815>
PostGIS <http://trac.osgeo.org/postgis/>
The PostGIS Trac is used for bug, enhancement & task tracking, a user and developer wiki, and a view into the subversion code repository of PostGIS project.
More information about the postgis-tickets
mailing list