15 | | It seems like the parameter given to the function "ST_GeomFromText"/"st_geometryfromtext" is invalid. I looked at the Polygon assertions in the MySQL documentation and the values I've put in the regression test migration seems not to be a valid Polygon for MySQL : |
16 | | |
17 | | Polygon Assertions |
18 | | |
19 | | The boundary of a Polygon consists of a set of LinearRing objects (that is, LineString objects that are both simple and closed) that make up its exterior and interior boundaries. |
20 | | |
21 | | A Polygon has no rings that cross. The rings in the boundary of a Polygon may intersect at a Point, but only as a tangent. |
22 | | |
23 | | A Polygon has no lines, spikes, or punctures. |
24 | | |
25 | | A Polygon has an interior that is a connected point set. |
26 | | |
27 | | A Polygon may have holes. The exterior of a Polygon with holes is not connected. Each hole defines a connected component of the exterior. |
| 15 | It seems like the parameter given to the function "ST_GeomFromText"/"st_geometryfromtext" is invalid. I looked at the Polygon assertions in the MySQL documentation and the values I've put in the regression test migration seems not to be a valid Polygon for MySQL : https://dev.mysql.com/doc/refman/8.0/en/gis-class-polygon.html |