[PostGIS] #5821: PG18 crashing on master branch (3.6) on tickets regress

PostGIS trac at osgeo.org
Sat Dec 14 15:19:50 PST 2024


#5821: PG18 crashing on master branch (3.6) on tickets regress
----------------------+---------------------------
  Reporter:  robe     |      Owner:  pramsey
      Type:  defect   |     Status:  new
  Priority:  blocker  |  Milestone:  PostGIS 3.6.0
 Component:  postgis  |    Version:  master
Resolution:           |   Keywords:
----------------------+---------------------------
Comment (by robe):

 Oops sorry didn't add the full query should be:


 {{{
 WITH RECURSIVE path (id, g) AS (
     SELECT id, g FROM rec WHERE id = 1
     UNION
     SELECT rec.id, rec.g
     FROM path, rec
     WHERE ST_Y(path.g) = ST_X(rec.g)
 )
 SELECT '#1014c', id, st_astext(g) FROM path;
 }}}
-- 
Ticket URL: <https://trac.osgeo.org/postgis/ticket/5821#comment:1>
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