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
In PostGis they can create an index directly on an expand, which would probably lead to better performance:
CREATE INDEX ON broadcasting_towers using gist (ST_Expand(geom, sending_range));
Is there such possibility in H2 ?
The text was updated successfully, but these errors were encountered:
H2 doesn't support partial indexes and indexes on expressions, but supports indexes on computed columns. Index on computed column can only be used if this computed column is used directly in the filter criteria of the query with a compatible operator on the top level or within an AND.
I wonder whether ST_DWithin can be used with ST_EXPAND to use the indexes and limit the number of geometries tested. We do that in GeoClimate but I am not sure it is actually efficient:
https://github.com/orbisgis/geoclimate/blob/78c95a53deb24e1e61570276927ba03fbc194676/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/RsuIndicators.groovy#L199
In PostGis they can create an index directly on an expand, which would probably lead to better performance:
CREATE INDEX ON broadcasting_towers using gist (ST_Expand(geom, sending_range));
Is there such possibility in H2 ?
The text was updated successfully, but these errors were encountered: