Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweak explain_analyze helper invocation to avoid pg_hint_plan limitat…
…ion (#683) For the collector-based Query Tuning workflow, the collector receives a query text from the pganalyze server and runs it on the target database. This query text may include pg_hint_plan hints, as users use workbooks to optimize queries. However, it looks like pg_hint_plan ignores hints if they are not in the _first_ comment in a query. The collector prepends a query marker as a separate comment, and this causes pg_hint_plan to ignore any hints specified in the query. Avoid passing our query marker, since we're already prepending it to the top-level explain_analyze invocation, and nested queries will not show up in pg_stat_activity anyway.
- Loading branch information