plpgsql_check
plpgsql_check
plpgsql_check : extended check for plpgsql functions
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 3060 | plpgsql_check | plpgsql_check | 2.8.5 | LANG | MIT | C |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--sLd-- | No | Yes | Yes | Yes | no | no |
| Relationships | |
|---|---|
| Requires | plpgsql |
| See Also | pldbgapi plprofiler pg_hint_plan pgtap auto_explain plv8 plperl plpython3u |
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PGDG | 2.8.5 | 18 17 16 15 14 13 | plpgsql_check | - |
| RPM | PGDG | 2.8.5 | 18 17 16 15 14 13 | plpgsql_check_$v* | - |
| DEB | PGDG | 2.8.5 | 18 17 16 15 14 13 | postgresql-$v-plpgsql-check | - |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 | PG13 |
|---|---|---|---|---|---|---|
el8.x86_64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
el8.aarch64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
el9.x86_64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
el9.aarch64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
el10.x86_64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | MISS |
el10.aarch64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | MISS |
d12.x86_64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
d12.aarch64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
d13.x86_64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
d13.aarch64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
u22.x86_64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
u22.aarch64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
u24.x86_64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
u24.aarch64 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.8.5 | PGDG 2.7.15 |
Source
pig build pkg plpgsql_check; # 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 plpgsql_check; # install via package name, for the active PG version
pig install plpgsql_check -v 18; # install for PG 18
pig install plpgsql_check -v 17; # install for PG 17
pig install plpgsql_check -v 16; # install for PG 16
pig install plpgsql_check -v 15; # install for PG 15
pig install plpgsql_check -v 14; # install for PG 14
pig install plpgsql_check -v 13; # install for PG 13Config this extension to shared_preload_libraries:
shared_preload_libraries = 'plpgsql_check';Create this extension with:
CREATE EXTENSION plpgsql_check CASCADE; -- requires plpgsqlLast updated on