[postgis-users] st_isvalid stop the server

2010-05-30 Thread Colin East
When I run this query my PostgreSQL server stops!! SELECT ST_IsValid(the_geom) FROM roadassets WHERE gid = 1; If I run something like 'select * from roadassets;' all is fine. I'm running win2008 standard server on VirtualBox hosted on a Ubuntu 10.04 desktop. The PostgreSQL/PostGIS install

Re: [postgis-users] st_isvalid stop the server

2010-05-30 Thread Paul Ramsey
Sounds like all calls to st_isvalid fail, yes? As you can imagine, this is not behaviour we see on other platforms. I wonder if anyone else on Win2008 Server using the EBD distribution see a similar thing? P On Sun, May 30, 2010 at 1:58 AM, Colin East colin.e...@geospatial-ict.com.au wrote:

Re: [postgis-users] st_isvalid stop the server

2010-05-30 Thread Stephen Woodbridge
Does any PostGIS function work? like: select astext(the_geom) from roadassets where gid=1; select st_length(the_geom) from roadassets where gid=1; -Steve W. Colin East wrote: When I run this query my PostgreSQL server stops!! SELECT ST_IsValid(the_geom) FROM roadassets WHERE gid = 1; If I