You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Queries returning postgis types are currently unsupported:
select <ext::postgis::geometry>'POINT (1 2 3)';
edgedb error: ProtocolEncodingError: base scalar with uuid 44c901c0-d922-4894-83c8-061bd05e4840 not found
I think that probably the right way to do this is to have edgedb-rust not actually decode the WKB, but provide it to clients as bytes. This is so that we don't need to have any dependency on geometry libraries in edgedb-rust.
Then, edgedb-cli (which has a trillion deps already) can decode the WKB.
Queries returning postgis types are currently unsupported:
Geometry is encoded in WKB format (https://libgeos.org/specifications/wkb/), and box2d/box3d are encoded as polygon geometry. See edgedb/edgedb-js#1113.
The text was updated successfully, but these errors were encountered: