pgpcre

Perl Compatible Regular Expression functions

Overview

MIXED 3rd Party Extension: pgpcre : Perl Compatible Regular Expression functions

Information

Metadata

  • Latest Version: 1
  • Postgres Support: 17,16,15,14,13
  • Need Load: Shared library do not need explicit loading
  • Need DDL: Need CREATE EXTENSION DDL
  • Relocatable: Can not install to arbitrary schema
  • Trusted: Untrusted, Require Superuser to Create
  • Schemas: N/A
  • Requires: N/A

RPM / DEB

  • RPM Repo: PIGSTY
  • RPM Name: pgpcre_$v
  • RPM Ver : 1
  • RPM Deps: N/A
  • DEB Repo: PGDG
  • DEB Name: postgresql-$v-pgpcre
  • DEB Ver : 1
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 pgpcre_17
PIGSTY 1
pgpcre_16
PIGSTY 1
pgpcre_15
PIGSTY 1
pgpcre_14
PIGSTY 1
pgpcre_13
PIGSTY 1
el8 aarch64 pgpcre_17
PIGSTY 1
pgpcre_16
PIGSTY 1
pgpcre_15
PIGSTY 1
pgpcre_14
PIGSTY 1
pgpcre_13
PIGSTY 1
el9 x86_64 pgpcre_17
PIGSTY 1
pgpcre_16
PIGSTY 1
pgpcre_15
PIGSTY 1
pgpcre_14
PIGSTY 1
pgpcre_13
PIGSTY 1
el9 aarch64 pgpcre_17
PIGSTY 1
pgpcre_16
PIGSTY 1
pgpcre_15
PIGSTY 1
pgpcre_14
PIGSTY 1
pgpcre_13
PIGSTY 1
d12 x86_64 postgresql-17-pgpcre
PGDG 0.20190509
postgresql-16-pgpcre
PGDG 0.20190509
postgresql-15-pgpcre
PGDG 0.20190509
postgresql-14-pgpcre
PGDG 0.20190509
postgresql-13-pgpcre
PGDG 0.20190509
d12 aarch64 postgresql-17-pgpcre
PGDG 0.20190509
postgresql-16-pgpcre
PGDG 0.20190509
postgresql-15-pgpcre
PGDG 0.20190509
postgresql-14-pgpcre
PGDG 0.20190509
postgresql-13-pgpcre
PGDG 0.20190509
u22 x86_64 postgresql-17-pgpcre
PGDG 0.20190509
postgresql-16-pgpcre
PGDG 0.20190509
postgresql-15-pgpcre
PGDG 0.20190509
postgresql-14-pgpcre
PGDG 0.20190509
postgresql-13-pgpcre
PGDG 0.20190509
u22 aarch64 postgresql-17-pgpcre
PGDG 0.20190509
postgresql-16-pgpcre
PGDG 0.20190509
postgresql-15-pgpcre
PGDG 0.20190509
postgresql-14-pgpcre
PGDG 0.20190509
postgresql-13-pgpcre
PGDG 0.20190509
u24 x86_64 postgresql-17-pgpcre
PGDG 0.20190509
postgresql-16-pgpcre
PGDG 0.20190509
postgresql-15-pgpcre
PGDG 0.20190509
postgresql-14-pgpcre
PGDG 0.20190509
postgresql-13-pgpcre
PGDG 0.20190509
u24 aarch64 postgresql-17-pgpcre
PGDG 0.20190509
postgresql-16-pgpcre
PGDG 0.20190509
postgresql-15-pgpcre
PGDG 0.20190509
postgresql-14-pgpcre
PGDG 0.20190509
postgresql-13-pgpcre
PGDG 0.20190509

Installation

Install pgpcre via the pig CLI tool:

pig ext install pgpcre

Install pgpcre via Pigsty playbook:

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

Install pgpcre RPM from YUM repo directly:

dnf install pgpcre_17;
dnf install pgpcre_16;
dnf install pgpcre_15;
dnf install pgpcre_14;
dnf install pgpcre_13;

Install pgpcre DEB from APT repo directly:

apt install postgresql-17-pgpcre;
apt install postgresql-16-pgpcre;
apt install postgresql-15-pgpcre;
apt install postgresql-14-pgpcre;
apt install postgresql-13-pgpcre;

Enable pgpcre extension on PostgreSQL cluster:

CREATE EXTENSION pgpcre;




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