Changes between Version 1 and Version 2 of Ticket #4604, comment 1
- Timestamp:
- 12/13/19 16:24:02 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4604, comment 1
v1 v2 9 9 ST_GeographyFromText('SRID=4326;LINESTRING(-11.0 0.0,-11.0 0.0001)') 10 10 ); 11 SELECT 12 ST_Distance( 13 ST_GeographyFromText('SRID=4326;POINT(-11.0 0.00005)'), 14 ST_GeographyFromText('SRID=4326;LINESTRING(-11.0 0.0,-11.0 0.0001)') 15 ) AS dist, 16 _ST_DistanceTree( 17 ST_GeographyFromText('SRID=4326;POINT(-11.0 0.00005)'), 18 ST_GeographyFromText('SRID=4326;LINESTRING(-11.0 0.0,-11.0 0.0001)') 19 ) AS tree_dist; 11 20 }}} 12 21