forked from trinodb/trino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Accelerate build-side geometries in spatial join
Build gemetries are often used repeated for spatial relation checks in a spatial join. Accelerating a geometry is a one-time cost which reduces the complexity of these checks from `O(n)` to `O(lg n)` or even `O(1)`, where n is the number of vertices. When a geometry is accessed for the join, accelerate it (an idempotent operation). Upgraded ESRI library to 2.2.2 (from 2.2.1) to pick up a fix in acceleration logic.
- Loading branch information
1 parent
ad05dcb
commit 65edf49
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters