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
SQL Error: java.sql.SQLException: Binder Error: Could not choose a best candidate function for the function call "ST_GeomFromWKB("NULL")". In order to select one, please add explicit type casts.
Candidate functions:
ST_GeomFromWKB(BLOB) -> GEOMETRY
ST_GeomFromWKB(WKB_BLOB) -> GEOMETRY
Works when NULL is casted to blob:
SELECT ST_GeomFromWKB(NULL::blob);
The text was updated successfully, but these errors were encountered:
throws:
Works when NULL is casted to blob:
The text was updated successfully, but these errors were encountered: