Changes between Version 25 and Version 26 of DevWikiEmptyGeometry
- Timestamp:
- 10/06/09 15:22:09 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiEmptyGeometry
v25 v26 13 13 * ST_Distance(geometry, empty) == NULL 14 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 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) 18 19 * ST_Contains(geometry, empty) == FALSE (SQL Server says False) 19 20 * ST_Within(geometry, empty) == FALSE (SQL Server says False)