Changes between Version 24 and Version 25 of DevWikiEmptyGeometry


Ignore:
Timestamp:
Oct 6, 2009, 3:18:25 PM (15 years ago)
Author:
chodgson
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiEmptyGeometry

    v24 v25  
    1212 * ST_Difference(empty, geometry) == empty
    1313 * ST_Distance(geometry, empty) == NULL
    14  * ST_DWithin(geometry, empty, tolerance) == FALSE (if distance = null, shouldn't DWithin be null?)
     14 * ST_DWithin(geometry, empty, tolerance) == FALSE
     15 ** I think this should be null. It is intended to be equivalent to:
     16 *** distance( geometry, empty ) < tolerance
     17 ** which would be equivalent to NULL < tolerance - which would be NULL by the SQL standard
    1518 * ST_Contains(geometry, empty) == FALSE (SQL Server says False)
    1619 * ST_Within(geometry, empty) == FALSE (SQL Server says False)