ossc-db / pg_hint_plan

Extension adding support for optimizer hints in PostgreSQL

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pg_hint_plan 1.8

pg_hint_plan makes it possible to tweak PostgreSQL execution plans using so-called "hints" in SQL comments, like /*+ SeqScan(a) */.

PostgreSQL uses a cost-based optimizer, that uses data statistics, not static rules. The planner (optimizer) estimates costs of each possible execution plans for a SQL statement, then executes the plan with the lowest cost. The planner does its best to select the best execution plan, but it is far from perfect, since it may not count some data properties, like correlation between columns.

For more details, please see the various documentations available in the docs/ directory:

  1. Description
  2. The hint table
  3. Installation
  4. Uninstallation
  5. Details in hinting
  6. Errors
  7. Functional limitations
  8. Requirements
  9. Hints list

Copyright (c) 2012-2024, NIPPON TELEGRAPH AND TELEPHONE CORPORATION

About

Extension adding support for optimizer hints in PostgreSQL

License:Other


Languages

Language:C 66.1%Language:PLpgSQL 19.3%Language:Lex 10.4%Language:Perl 3.1%Language:Makefile 0.9%Language:Shell 0.1%