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 current solution is naive and does not support complex queries. It need to be reworked with a query parser such as jsqlparser or calcite to cover cases involving subqueries, GROUP BY, HAVING, LIMIT, and ORDER BY clauses in user provided queries.
The text was updated successfully, but these errors were encountered:
The query optimizer of Postgres 15 is not able to push conditions down when using sub-queries. Therefore, we now append the spatial conditions to the sub-query. The unit tests have been adapted accordingly. A more robust solution involving a query parser will be devised (#913) in the future to account for more complex queries (GROUP BY, HAVING, etc.).
---------
Co-authored-by: AlexGacon <[email protected]>
The current solution is naive and does not support complex queries. It need to be reworked with a query parser such as jsqlparser or calcite to cover cases involving subqueries, GROUP BY, HAVING, LIMIT, and ORDER BY clauses in user provided queries.
The text was updated successfully, but these errors were encountered: