Changes between Version 6 and Version 7 of DevWikiEmptyGeometry


Ignore:
Timestamp:
Oct 6, 2009, 10:37:40 AM (15 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiEmptyGeometry

    v6 v7  
    44
    55{{{
    6  SQL Server 2008 geometry: SELECT Geometry::STGeomFromText('POINT(1 2)',4326).STUnion(Geometry::STGeomFromText('POLYGON EMPTY',4326)) => POINT (1 2)
     6SQL Server 2008 geometry: SELECT Geometry::STGeomFromText('POINT(1 2)',4326).STUnion(Geometry::STGeomFromText('POLYGON EMPTY',4326))
     7     => POINT (1 2)
    78   
    8 SQL Server 2008 geography: SELECT (Geography::STGeomFromText('POINT(1 2)',4326).STUnion(Geography::STGeomFromText('POLYGON EMPTY',4326))).STAsText() => POINT(1 2)
     9SQL Server 2008 geography: SELECT (Geography::STGeomFromText('POINT(1 2)',4326).STUnion(Geography::STGeomFromText('POLYGON EMPTY',4326))).STAsText()
     10    => POINT(1 2)
    911}}}
    1012
     
    1214 * ST_Union(empty, empty) == empty
    1315{{{
    14  SQL Server 2008: SELECT Geometry::STGeomFromText('POLYGON(EMPTY)',4326).STUnion(Geometry::STGeomFromText('POLYGON EMPTY',4326)) => POINT (1 2)
     16 SQL Server 2008 Geography: SELECT (Geometry::STGeomFromText('POLYGON EMPTY',4326).STUnion(Geometry::STGeomFromText('POLYGON EMPTY',4326))).STAsText()
     17     => GEOMETRYCOLLECTION EMPTY
     18 SQL Server 2008 Geography: SELECT (Geography::STGeomFromText('POLYGON EMPTY',4326).STUnion(Geography::STGeomFromText('POLYGON EMPTY',4326))).STAsText()
     19      => GEOMETRYCOLLECTION EMPTY
    1520   
    1621}}}