Changes between Version 1 and Version 2 of Ticket #4604, comment 1


Ignore:
Timestamp:
Dec 13, 2019, 4:24:02 PM (4 years ago)
Author:
robe

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4604, comment 1

    v1 v2  
    99    ST_GeographyFromText('SRID=4326;LINESTRING(-11.0 0.0,-11.0 0.0001)')
    1010  );
     11SELECT
     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;
    1120}}}
    1221