Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix query hint retrieval with utilities
Query jumbling is possible in PostgreSQL 16 for utilities, generating a JumbleState that could involve a query normalization. This would break the retrieval of query hints for quite a few scenarios, we we should try to get the hints from the query planned, mostly around EXPLAIN: - EXPLAIN EXECUTE - EXPLAIN CTAS This commit patches the post parse-analyze hook to ignore entirely utility queries, unbreaking all the remaining regression tests. At this point, the regression tests are stable with PostgreSQL 16. Per pull request #130.
- Loading branch information