Changes between Initial Version and Version 1 of Ticket #4245


Ignore:
Timestamp:
Nov 19, 2018, 8:30:17 PM (6 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4245

    • Property Summary Debbie failing on all runs of postgis 3.0Debbie tickets regress on geography intersects failing on all PostgreSQL branches for postgis 3.0
  • Ticket #4245 – Description

    initial v1  
    11Even after the postgrsql 12 fix, debbie is still failing.  But it seems this change is affecting all postgres branches, not just the 12.  The 12 install issues were fixed.
     2
     3The test triggering the difference is
     4
     5{{{
     6SELECT '#723',
     7 encode(ST_AsEWKB(ST_SnapToGrid( ST_Intersection(a.geog, b.geog)::geometry, 0.00001),'ndr'),'hex')
     8FROM (VALUES (ST_GeogFromText('SRID=4326;POINT(-11.1111111 40)') ), (ST_GeogFromText('SRID=4326;POINT(-11.1111111 55)') ) ) As  a(geog) CROSS JOIN ( VALUES (ST_GeogFromText('SRID=4326;POINT(-11.1111111 40)') ), (ST_GeogFromText('SRID=4326;POINT(-11.1111111 55)') )) As b(geog);
     9}}}
     10
    211
    312