petern48 opened a new issue, #162:
URL: https://github.com/apache/sedona-db/issues/162

   Creating either one of the following geometries fails with the following 
error on SedonaDB, even though they succeed on PostGIS. This behavior occurs in 
the cli, the tests, etc.
   
   ```sql
   select st_geomfromtext('GEOMETRYCOLLECTION Z (POINT (1 2 3))')
   -- fails
   
   select st_geomfromtext('GEOMETRYCOLLECTION (POINT (1 2 3))');
   -- postgis infers this to be xyz based on st_hasz, st_hasm calls
   
   select st_geomfromtext('point (1 1 1)');
   -- postgis infers this to be xyz based on st_hasz, st_hasm calls
   ```
   
   Error:
   ```
   Internal error: WKT parse error: Missing closing parenthesis for type.
   This issue was likely caused by a bug in DataFusion's code. Please help us 
to resolve this by filing a bug report in our issue tracker: 
https://github.com/apache/datafusion/issues
   ```
   (Ignore that it misleadingly says "Datafusion's code")


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to