Changes between Initial Version and Version 1 of Ticket #33047, comment 3


Ignore:
Timestamp:
Nov 26, 2021, 8:26:30 AM (2 years ago)
Author:
Arsalan Ghassemi

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33047, comment 3

    initial v1  
    1313MySQLdb._exceptions.OperationalError: (1583, "Incorrect parameters in the call to native function 'st_geometryfromtext'")
    1414
    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.
     15It 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
    2816
    2917
Back to Top