Changes between Initial Version and Version 1 of Ticket #3479


Ignore:
Timestamp:
Feb 27, 2016, 8:14:04 AM (8 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3479

    • Property Summary ST_ClusterKMeans hangsST_ClusterKMeans hangs with one row
  • Ticket #3479 – Description

    initial v1  
    1 I think it's memory exhaustion.  My postgres server just hangs.
     1My postgres server just hangs. Simpler
    22
    33{{{
    4 -- generate sample parcel test
    5 -- has 8 parcels, works fine
     4DROP TABLE IF EXISTS parcels;
    65CREATE 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;
     6SELECT 1 AS parcel_id,
     7    ST_MakeEnvelope(0,0,200,200) As geom;
    98
    109