Logical Replication - Type messages?

From: Stefen Hillman <stefen(dot)hillman(at)fivetran(dot)com>
To: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Logical Replication - Type messages?
Date: 2021-11-08 19:16:57
Message-ID: CAPgW8pMknK5pup6=T4a_UG=Cz80Rgp=KONqJmTdHfaZb0RvnFg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello psql-general,

I have an application which processes logical replication output from a
PostgreSQL server. We create publications and read data from a replication
slot with the pgoutput plugin.

Postgres has various message formats for logical replication, as defined
here:
https://www.postgresql.org/docs/10/protocol-logicalrep-message-formats.html

Currently, I process Relation messages to get most of the information I
need to work with Inserts, Updates, and Deletes. However, for type
information I'm currently using a SQL query to get the column type
information. I wanted to use the Type messages, but I never see them. I see
Begin, Commit, etc. but never Type.

- When are the Type messages generated and sent by the server?
- Is there a way to cause them to be generated?
- Are these type id > type mappings set in stone, or does PostgreSQL
allow for a server to have custom types (I notice that namespace is one of
the properties sent with the types)?

Any help is greatly appreciated - thank you!

Best regards,

Stefen Hillman

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Oleg Serov 2021-11-08 19:47:23 Re: Question: Is it possible to get the new xlog position after query execution?
Previous Message Christophe Pettus 2021-11-08 19:13:25 Re: Question: Is it possible to get the new xlog position after query execution?