plpgsql_check

extended check for plpgsql functions

Overview

PGDG 1st Party Extension: plpgsql_check : extended check for plpgsql functions

Information

Metadata

  • Latest Version: 2.7
  • Postgres Support: 17,16,15,14,13
  • Need Load: Explicit Loading Required
  • Need DDL: Need CREATE EXTENSION DDL
  • Relocatable: Can be installed into other schemas
  • Trusted: Untrusted, Require Superuser to Create
  • Schemas: N/A
  • Requires: plpgsql

RPM / DEB

  • RPM Repo: PGDG
  • RPM Name: plpgsql_check_$v*
  • RPM Ver : 2.7
  • RPM Deps: N/A
  • DEB Repo: PGDG
  • DEB Name: postgresql-$v-plpgsql-check
  • DEB Ver : 2.7
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 plpgsql_check_17
PGDG 2.7.14
plpgsql_check_16
PGDG 2.7.8
plpgsql_check_15
PGDG 2.7.8
plpgsql_check_14
PGDG 2.7.8
plpgsql_check_13
PGDG 2.7.8
el8 aarch64 plpgsql_check_17
PGDG 2.7.14
plpgsql_check_16
PGDG 2.7.8
plpgsql_check_15
PGDG 2.7.8
plpgsql_check_14
PGDG 2.7.8
plpgsql_check_13
PGDG 2.7.8
el9 x86_64 plpgsql_check_17
PGDG 2.7.14
plpgsql_check_16
PGDG 2.7.8
plpgsql_check_15
PGDG 2.7.8
plpgsql_check_14
PGDG 2.7.8
plpgsql_check_13
PGDG 2.7.8
el9 aarch64 plpgsql_check_17
PGDG 2.7.14
plpgsql_check_16
PGDG 2.7.8
plpgsql_check_15
PGDG 2.7.8
plpgsql_check_14
PGDG 2.7.8
plpgsql_check_13
PGDG 2.7.8
d12 x86_64 postgresql-17-plpgsql-check
PGDG 2.7.15
postgresql-16-plpgsql-check
PGDG 2.7.15
postgresql-15-plpgsql-check
PGDG 2.7.15
postgresql-14-plpgsql-check
PGDG 2.7.15
postgresql-13-plpgsql-check
PGDG 2.7.15
d12 aarch64 postgresql-17-plpgsql-check
PGDG 2.7.15
postgresql-16-plpgsql-check
PGDG 2.7.15
postgresql-15-plpgsql-check
PGDG 2.7.15
postgresql-14-plpgsql-check
PGDG 2.7.15
postgresql-13-plpgsql-check
PGDG 2.7.15
u22 x86_64 postgresql-17-plpgsql-check
PGDG 2.7.15
postgresql-16-plpgsql-check
PGDG 2.7.15
postgresql-15-plpgsql-check
PGDG 2.7.15
postgresql-14-plpgsql-check
PGDG 2.7.15
postgresql-13-plpgsql-check
PGDG 2.7.15
u22 aarch64 postgresql-17-plpgsql-check
PGDG 2.7.15
postgresql-16-plpgsql-check
PGDG 2.7.15
postgresql-15-plpgsql-check
PGDG 2.7.15
postgresql-14-plpgsql-check
PGDG 2.7.15
postgresql-13-plpgsql-check
PGDG 2.7.15
u24 x86_64 postgresql-17-plpgsql-check
PGDG 2.7.15
postgresql-16-plpgsql-check
PGDG 2.7.15
postgresql-15-plpgsql-check
PGDG 2.7.15
postgresql-14-plpgsql-check
PGDG 2.7.15
postgresql-13-plpgsql-check
PGDG 2.7.15
u24 aarch64 postgresql-17-plpgsql-check
PGDG 2.7.15
postgresql-16-plpgsql-check
PGDG 2.7.15
postgresql-15-plpgsql-check
PGDG 2.7.15
postgresql-14-plpgsql-check
PGDG 2.7.15
postgresql-13-plpgsql-check
PGDG 2.7.15

Installation

Install plpgsql_check via the pig CLI tool:

pig ext install plpgsql_check

Install plpgsql_check via Pigsty playbook:

./pgsql.yml -t pg_extension -e '{"pg_extensions": ["plpgsql_check"]}' # -l <cls>

Install plpgsql_check RPM from YUM repo directly:

dnf install plpgsql_check_17*;
dnf install plpgsql_check_16*;
dnf install plpgsql_check_15*;
dnf install plpgsql_check_14*;
dnf install plpgsql_check_13*;

Install plpgsql_check DEB from APT repo directly:

apt install postgresql-17-plpgsql-check;
apt install postgresql-16-plpgsql-check;
apt install postgresql-15-plpgsql-check;
apt install postgresql-14-plpgsql-check;
apt install postgresql-13-plpgsql-check;

Extension plpgsql_check has to be added to shared_preload_libraries

shared_preload_libraries = 'plpgsql_check'; # add to pg cluster config

Enable plpgsql_check extension on PostgreSQL cluster:

CREATE EXTENSION plpgsql_check CASCADE;




Last modified 2025-02-17: add extension part (cfa504b)