Changes between Version 1 and Version 2 of Ticket #3765
- Timestamp:
- 05/27/17 10:04:33 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3765 – Description
v1 v2 36 36 }}} 37 37 38 39 Problem query is: 40 41 42 {{{ 43 -- #3399 44 45 WITH g as ( 46 47 select 'POLYGON((1 0, 0 1, 1 2, 2 1, 1 0))'::geometry as geom 48 49 ), 50 51 n as ( 52 53 select n from unnest(ARRAY[-1,0,1,10,100,1000]) n 54 55 ), 56 57 pts as ( 58 59 select n,(st_dump(st_generatepoints(geom, n))).geom from g,n 60 61 ) 62 63 select '#3399' as t, n, count(*) from 64 g, pts 65 where st_contains(g.geom, pts.geom) 66 group by n 67 ORDER BY n; 68 }}} 69 38 70 Might be bot specific I guess but still concerning. 39 71 40 Problem is intermittent. I did a manual run and it passed. So perhaps some dirty memory somewhere.72 Problem is intermittent. I did a manual run multiple times and it passed. So perhaps some dirty memory somewhere or only happens if system is taxed.