pg_store_plans
Overview
| Package | Version | Category | License | Language |
|---|---|---|---|---|
pg_store_plans | 1.10 | STAT | BSD-3-Clause | C |
| ID | Extension | Bin | Lib | Load | Create | Trust | Reloc | Schema |
|---|---|---|---|---|---|---|---|---|
| 6250 | pg_store_plans | No | Yes | Yes | Yes | No | Yes | - |
| Related | pg_stat_plans pg_profile pg_stat_monitor pg_show_plans pg_stat_statements auto_explain explain_ui powa pg_overexplain pg_wait_sampling |
|---|
Version
| Type | Repo | Version | PG Ver | Package | Deps |
|---|---|---|---|---|---|
| EXT | MIXED | 1.10 | 1817161514 | pg_store_plans | - |
| RPM | PIGSTY | 1.10 | 1817161514 | pg_store_plans_$v | - |
| DEB | PIGSTY | 1.10 | 1817161514 | postgresql-$v-pg-store-plan | - |
Build
You can build the RPM / DEB packages for pg_store_plans using pig build:
Install
You can install pg_store_plans directly. First, make sure the PGDG and PIGSTY repositories are added and enabled:
Install the extension using pig or apt/yum/dnf:
Preload:
Create Extension:
Usage
Sources: official docs, repo, 1.10 release notes
pg_store_plans tracks execution plan statistics for SQL statements, similar to how pg_stat_statements tracks statement statistics. The upstream 1.10 release note says this version adds PostgreSQL 18 support; the documented SQL surface is otherwise the same as current docs.
Required server settings
pg_store_plans requires shared memory, so adding or removing it needs a server restart. The docs say it is silently disabled if compute_query_id is no.
Inspect stored plans
The docs describe queryid as the join key for pg_stat_statements, and pg_store_plans_info as a one-row view that exposes module-level stats such as dealloc and stats_reset.
Helper functions
pg_store_plans_*plan() is useful when pg_store_plans.plan_format = 'raw'.
Key GUCs
pg_store_plans.maxpg_store_plans.trackpg_store_plans.max_plan_lengthpg_store_plans.plan_storagepg_store_plans.plan_formatpg_store_plans.min_durationpg_store_plans.log_analyzepg_store_plans.log_bufferspg_store_plans.log_timingpg_store_plans.save
The docs describe plan_storage as file or shmem, and plan_format as text, json, xml, yaml, or raw.
Caveats
- Non-superusers cannot see
plan,queryid, orplanidfor statements executed by other users. pg_store_plansandpg_stat_statementsmaintain entries independently, so low-frequency rows may not always have a matching peer.
Was this page helpful?
Thanks—your feedback helps us improve this page.
What got in the way? (optional)