Improve release notes' description of Teodor's fixes for polygon overlaps
authorTom Lane
Wed, 1 Sep 2010 15:14:48 +0000 (15:14 +0000)
committerTom Lane
Wed, 1 Sep 2010 15:14:48 +0000 (15:14 +0000)
and contains operators.

doc/src/sgml/release-9.0.sgml

index 20c0378a0dd3359452bbf796aad33e70ae2962fe..14761ba0a79042248745e4ba10593b5b46cb0159 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
  
   Release 9.0
     
      
       Correct calculations of 
-      linkend="functions-geometry-op-table">overlap
-      and contains operations over polygons (Teodor Sigaev)
+      linkend="functions-geometry-op-table">overlaps
+      and contains operations for polygons (Teodor Sigaev)
+     
+
+     
+      The polygon && (overlaps) operator formerly just
+      checked to see if the two polygons' bounding boxes overlapped.  It now
+      does a more correct check.  The polygon @> and
+      <@ (contains/contained by) operators formerly checked
+      to see if one polygon's vertexes were all contained in the other;
+      this can wrongly report true for some non-convex polygons.
+      Now they check that all line segments of one polygon are contained in
+      the other.