Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: Fix incorrect reference to query ID generation
The query ID is automatically computed by PostgreSQL if the GUC compute_query_id is set to "on" or "auto". pg_hint_plan informs the backend to compute the query ID when pg_hint_plan.enable_hint_table is enabled by calling EnableQueryId() for the "auto" case. The documentation incorrectly mentioned that query IDs are computed by pg_stat_statements, so let's fix the description to match with the real behavior. Query IDs are computed by PostgreSQL itself without pg_stat_statement's help since v14, so backpatch down to this version. Backpatch-through: 14
- Loading branch information