Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-35739

Linestring's intersection with itself does not equal itself

    XMLWordPrintable

Details

    • Bug
    • Status: Open (View Workflow)
    • Minor
    • Resolution: Unresolved
    • 11.7.1
    • 10.6, 10.11, 11.4, 11.8
    • GIS
    • None

    Description

      Considering following queries:

      DROP table if EXISTS t1;
      CREATE TABLE t1(geom geometry NOT NULL);
      INSERT INTO t1 (geom) VALUES(ST_GeomFromText('LINESTRING(2 2,4 4,6 2,3 2,2 4)'));
       
      SELECT ST_Equals(geom, ST_Intersection(geom, geom)) as isequal, ST_AsTeXT(ST_Intersection(geom, geom)) AS intersection FROM t1;
      

      --expected:

      {1,LINESTRING(2 2,4 4,6 2,3 2,2 4)}

      --actual :

      {0,MULTILINESTRING((2 2,2.6666666666666665 2.6666666666666665),(2.6666666666666665 2.6666666666666665,3 2,6 2,4 4,2.6666666666666665 2.6666666666666665),(2.6666666666666665 2.6666666666666665,2 4))}

      ST_Intersection() doesn't consider that Intersection(a, a) is equal to a.

      Attachments

        Activity

          People

            Gosselin Dave Gosselin
            nbvfgh Shijie Li
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:

              Git Integration

                Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.