pglogical_origin

Dummy extension for compatibility when upgrading from Postgres 9.4

Overview

PGDG 1st Party Extension: pglogical : Dummy extension for compatibility when upgrading from Postgres 9.4

Information

Metadata

  • Latest Version: 1.0.0
  • Postgres Support: 17,16,15,14,13
  • Need Load: Shared library do not need explicit loading
  • Need DDL: Need CREATE EXTENSION DDL
  • Relocatable: Can be installed into other schemas
  • Trusted: Untrusted, Require Superuser to Create
  • Schemas: pglogical_origin
  • Requires: N/A

RPM / DEB

  • RPM Repo: PGDG
  • RPM Name: pglogical_$v*
  • RPM Ver : 1.0.0
  • RPM Deps: N/A
  • DEB Repo: PGDG
  • DEB Name: postgresql-$v-pglogical
  • DEB Ver : 1.0.0
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 pglogical_17
PGDG 2.4.5
pglogical_16
PGDG 2.4.4
pglogical_15
PGDG 2.4.3
pglogical_14
PGDG 2.4.3
pglogical_13
PGDG 2.4.3
el8 aarch64 pglogical_17
PGDG 2.4.5
pglogical_16
PGDG 2.4.4
pglogical_15
PGDG 2.4.3
pglogical_14
PGDG 2.4.3
pglogical_13
PGDG 2.4.3
el9 x86_64 pglogical_17
PGDG 2.4.5
pglogical_16
PGDG 2.4.4
pglogical_15
PGDG 2.4.3
pglogical_14
PGDG 2.4.3
pglogical_13
PGDG 2.4.3
el9 aarch64 pglogical_17
PGDG 2.4.5
pglogical_16
PGDG 2.4.4
pglogical_15
PGDG 2.4.3
pglogical_14
PGDG 2.4.3
pglogical_13
PGDG 2.4.3
d12 x86_64 postgresql-17-pglogical
PGDG 2.4.5
postgresql-16-pglogical
PGDG 2.4.5
postgresql-15-pglogical
PGDG 2.4.5
postgresql-14-pglogical
PGDG 2.4.5
postgresql-13-pglogical
PGDG 2.4.5
d12 aarch64 postgresql-17-pglogical
PGDG 2.4.5
postgresql-16-pglogical
PGDG 2.4.5
postgresql-15-pglogical
PGDG 2.4.5
postgresql-14-pglogical
PGDG 2.4.5
postgresql-13-pglogical
PGDG 2.4.5
u22 x86_64 postgresql-17-pglogical
PGDG 2.4.5
postgresql-16-pglogical
PGDG 2.4.5
postgresql-15-pglogical
PGDG 2.4.5
postgresql-14-pglogical
PGDG 2.4.5
postgresql-13-pglogical
PGDG 2.4.5
u22 aarch64 postgresql-17-pglogical
PGDG 2.4.5
postgresql-16-pglogical
PGDG 2.4.5
postgresql-15-pglogical
PGDG 2.4.5
postgresql-14-pglogical
PGDG 2.4.5
postgresql-13-pglogical
PGDG 2.4.5
u24 x86_64 postgresql-17-pglogical
PGDG 2.4.5
postgresql-16-pglogical
PGDG 2.4.5
postgresql-15-pglogical
PGDG 2.4.5
postgresql-14-pglogical
PGDG 2.4.5
postgresql-13-pglogical
PGDG 2.4.5
u24 aarch64 postgresql-17-pglogical
PGDG 2.4.5
postgresql-16-pglogical
PGDG 2.4.5
postgresql-15-pglogical
PGDG 2.4.5
postgresql-14-pglogical
PGDG 2.4.5
postgresql-13-pglogical
PGDG 2.4.5

Installation

Install pglogical_origin via the pig CLI tool:


pig ext install pglogical; # Extension Namepig ext install pglogical_origin; # normalized package name

Install pglogical via Pigsty playbook:

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

Install pglogical RPM from YUM repo directly:

dnf install pglogical_17*;
dnf install pglogical_16*;
dnf install pglogical_15*;
dnf install pglogical_14*;
dnf install pglogical_13*;

Install pglogical DEB from APT repo directly:

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

Enable pglogical_origin extension on PostgreSQL cluster:

CREATE EXTENSION pglogical_origin;




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