Changes between Initial Version and Version 1 of Ticket #3479
- Timestamp:
- 02/27/16 08:14:04 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3479
- Property Summary ST_ClusterKMeans hangs → ST_ClusterKMeans hangs with one row
-
Ticket #3479 – Description
initial v1 1 I think it's memory exhaustion. My postgres server just hangs. 1 My postgres server just hangs. Simpler 2 2 3 3 {{{ 4 -- generate sample parcel test 5 -- has 8 parcels, works fine 4 DROP TABLE IF EXISTS parcels; 6 5 CREATE TABLE parcels AS 7 SELECT row_number() OVER()AS parcel_id,8 ST_ Subdivide(ST_Buffer('LINESTRING(0 100, 100 200)'::geometry,50, 'endcap=flat'),8) As geom;6 SELECT 1 AS parcel_id, 7 ST_MakeEnvelope(0,0,200,200) As geom; 9 8 10 9