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
The following statement triggers an internal error:
DROPTABLE IF EXISTS origin;
CREATETABLEorigin (id int, geom geometry);
INSERT INTO origin (id, geom) VALUES (0, ST_Boundary(ST_GeomFromText('GEOMETRYCOLLECTION EMPTY')));
INSERT INTO origin (id, geom) VALUES (1, ST_Boundary(ST_GeomFromText('MULTILINESTRING((7 33,4 31 ,9 31 ,13 27 ,7 33))')));
SELECT ST_Disjoint(a1.geom, a2.geom) FROM origin as a1, origin as a2 WHEREa1.id=1anda2.id=0;
--Error: near line 5: Serialization Error: Trying to read past end of buffer
Meanwhile, there is an empty result when querying the Disjoint directly as following statement:
SELECT ST_Disjoint(a1, a2) FROM
(SELECT ST_Boundary(ST_GeomFromText('GEOMETRYCOLLECTION EMPTY')) As a1
, ST_CollectionExtract(ST_Boundary(ST_GeomFromText('MULTILINESTRING((7 33,4 31 ,9 31 ,13 27 ,7 33))'))) As a2) As subquery;
-- ┌─────────────────────┐-- │ st_disjoint(a1, a2) │-- │ boolean │-- ├─────────────────────┤-- │ │-- └─────────────────────┘
Version:
Spatial version: FORCE INSTALL spatial FROM 'http://nightly-extensions.duckdb.org'; and LOAD spatial;
DuchDB version;
[('v0.9.2', '3c695d7ba9')]
The text was updated successfully, but these errors were encountered:
The following statement triggers an internal error:
Meanwhile, there is an empty result when querying the Disjoint directly as following statement:
Version:
Spatial version:
FORCE INSTALL spatial FROM 'http://nightly-extensions.duckdb.org';
andLOAD spatial;
DuchDB version;
[('v0.9.2', '3c695d7ba9')]
The text was updated successfully, but these errors were encountered: