pg_hint_plan
pg_hint_plan
pg_hint_plan : Give PostgreSQL ability to manually force some decisions in execution plans.
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 2820 | pg_hint_plan
|
pg_hint_plan
|
1.8.0 |
FEAT
|
BSD 3-Clause
|
C
|
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--s-d--
|
No
|
Yes
|
No
|
Yes
|
no
|
no
|
| Relationships | |
|---|---|
| See Also | pg_show_plans
pg_store_plans
pg_stat_statements
hypopg
pg_qualstats
auto_explain
index_advisor
pg_profile
|
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PGDG
|
1.8.0 |
18
17
16
15
14
13
|
pg_hint_plan |
- |
| RPM | PGDG
|
1.8.0 |
18
17
16
15
14
13
|
pg_hint_plan_$v* |
- |
| DEB | PGDG
|
1.8.0 |
18
17
16
15
14
13
|
postgresql-$v-pg-hint-plan |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 | PG13 |
|---|---|---|---|---|---|---|
el8.x86_64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.9
|
el8.aarch64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.9
|
el9.x86_64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.9
|
el9.aarch64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.9
|
el10.x86_64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.11
|
el10.aarch64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.11
|
d12.x86_64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.11
|
d12.aarch64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.11
|
d13.x86_64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.11
|
d13.aarch64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.11
|
u22.x86_64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.11
|
u22.aarch64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.11
|
u24.x86_64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.11
|
u24.aarch64
|
PGDG 1.8.0
|
PGDG 1.7.1
|
PGDG 1.6.2
|
PGDG 1.5.3
|
PGDG 1.4.4
|
PGDG 1.3.11
|
Source
pig build pkg pg_hint_plan; # build spec not readyInstall
Make sure PGDG repo available:
pig repo add pgdg -u # add pgdg repo and update cacheInstall this extension with pig:
pig install pg_hint_plan; # install via package name, for the active PG version
pig install pg_hint_plan -v 18; # install for PG 18
pig install pg_hint_plan -v 17; # install for PG 17
pig install pg_hint_plan -v 16; # install for PG 16
pig install pg_hint_plan -v 15; # install for PG 15
pig install pg_hint_plan -v 14; # install for PG 14
pig install pg_hint_plan -v 13; # install for PG 13Create this extension with:
CREATE EXTENSION pg_hint_plan;Last updated on