[postgis-tickets] [PostGIS] #3416: topology: crash when loading topogeometry (regression)
PostGIS
trac at osgeo.org
Mon Jan 4 03:18:11 PST 2016
#3416: topology: crash when loading topogeometry (regression)
----------------------+---------------------------
Reporter: rulus | Owner: pramsey
Type: defect | Status: new
Priority: medium | Milestone: PostGIS 2.2.1
Component: postgis | Version: 2.2.x
Resolution: | Keywords:
----------------------+---------------------------
Comment (by rulus):
I tried starting from a clean build, maybe something went wrong there.
I'll retry completely from scratch now.
This triggers the crash for me (on an empty database):
{{{
create extension postgis;
create extension postgis_topology;
create table grondwaterlichamen (
id serial primary key,
naam varchar
);
select createtopology('gwl', 31370, 0.01);
select topology.AddTopoGeometryColumn('gwl', 'public',
'grondwaterlichamen', 'topogeom', 'MULTIPOLYGON');
insert into grondwaterlichamen (naam, topogeom)
select 'test', topology.toTopoGeom(st_geomfromewkt('SRID=31370;POLYGON((30
10, 40 40, 20 40, 10 20, 30 10))'), 'gwl', 1, 0.01);
}}}
--
Ticket URL: <https://trac.osgeo.org/postgis/ticket/3416#comment:3>
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