Changes between Version 25 and Version 26 of DevWikiEmptyGeometry


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

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiEmptyGeometry

    v25 v26  
    1313 * ST_Distance(geometry, empty) == NULL
    1414 * 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
     15   * chodgson thinks this should be null. It reduces to:
     16     * ST_Distance( geometry, empty ) < tolerance
     17     * NULL < tolerance
     18     * NULL (by the SQL standard)
    1819 * ST_Contains(geometry, empty) == FALSE (SQL Server says False)
    1920 * ST_Within(geometry, empty) == FALSE (SQL Server says False)