pg_show_plans
pg_show_plans
pg_show_plans : show query plans of all currently running SQL statements
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 6210 | pg_show_plans
|
pg_show_plans
|
2.1.7 |
STAT
|
PostgreSQL
|
C
|
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--s-d-r
|
No
|
Yes
|
No
|
Yes
|
yes
|
no
|
| Relationships | |
|---|---|
| See Also | pg_store_plans
explain_ui
auto_explain
pg_stat_statements
pg_hint_plan
pg_stat_monitor
pg_qualstats
pre_prepare
|
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PGDG
|
2.1.7 |
18
17
16
15
14
13
|
pg_show_plans |
- |
| RPM | PGDG
|
2.1.7 |
18
17
16
15
14
13
|
pg_show_plans_$v* |
- |
| DEB | PGDG
|
2.1.7 |
18
17
16
15
14
13
|
postgresql-$v-show-plans |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 | PG13 |
|---|---|---|---|---|---|---|
el8.x86_64
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
el8.aarch64
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
el9.x86_64
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
el9.aarch64
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
el10.x86_64
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
el10.aarch64
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
PGDG 2.1.6
|
d12.x86_64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.2
|
d12.aarch64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.2
|
d13.x86_64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.2
|
d13.aarch64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.2
|
u22.x86_64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.2
|
u22.aarch64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.2
|
u24.x86_64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.2
|
u24.aarch64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.2
|
Source
pig build pkg pg_show_plans; # 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_show_plans; # install via package name, for the active PG version
pig install pg_show_plans -v 18; # install for PG 18
pig install pg_show_plans -v 17; # install for PG 17
pig install pg_show_plans -v 16; # install for PG 16
pig install pg_show_plans -v 15; # install for PG 15
pig install pg_show_plans -v 14; # install for PG 14
pig install pg_show_plans -v 13; # install for PG 13Create this extension with:
CREATE EXTENSION pg_show_plans;Last updated on