Summary
The view pg_publication_sequences provides information about the mapping between publications and sequences.
(Description quoted from the official PostgreSQL documentation.)
Columns
The pg_publication_sequences system view exposes the following columns (names, types and descriptions are taken verbatim from the PostgreSQL documentation):
pubnamenamereferencespg_publication.pubname
Name of publicationschemanamenamereferencespg_namespace.nspname
Name of schema containing sequencesequencenamenamereferencespg_class.relname
Name of sequence
Related catalogs
This object references the following other system catalogs:
pubname→pg_publicationschemaname→pg_namespacesequencename→pg_class
Version applicability
Present in PostgreSQL 19 (verified against each release’s documentation). This object was introduced in PostgreSQL 19.
Related & references
Reference: PostgreSQL documentation — pg_publication_sequences.