diff options
| author | Amit Kapila | 2021-06-24 06:21:58 +0000 |
|---|---|---|
| committer | Amit Kapila | 2021-06-24 06:21:58 +0000 |
| commit | f08722cf83ab1fabee948a4e5754bf6236ad700b (patch) | |
| tree | 00d04b6292c05d35923fd44b1c0849b3ea18867c /doc/src | |
| parent | c66fb78ebb4f473bb4fd8773de3cda9339e14f81 (diff) | |
Doc: Update logical replication message formats.
Commits 9de77b5453 and ac4645c015 missed to update the logical replication
message formats section in the docs.
Author: Brar Piening
Reviewed-by: Amit Kapila
Discussion: https://www.postgresql.org/message-id/[email protected]
Diffstat (limited to 'doc/src')
| -rw-r--r-- | doc/src/sgml/protocol.sgml | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index bc2a2feb0b9..01e87617f40 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -6498,6 +6498,18 @@ Message </para> </listitem> </varlistentry> + +<varlistentry> +<term> + Int32 +</term> +<listitem> +<para> + Length of the content. +</para> +</listitem> +</varlistentry> + <varlistentry> <term> Byte<replaceable>n</replaceable> @@ -7430,6 +7442,19 @@ TupleData </para> </listitem> </varlistentry> +</variablelist> + Or +<variablelist> +<varlistentry> +<term> + Byte1('b') +</term> +<listitem> +<para> + Identifies the data as binary formatted value. +</para> +</listitem> +</varlistentry> <varlistentry> <term> Int32 @@ -7446,8 +7471,8 @@ TupleData </term> <listitem> <para> - The value of the column, in text format. (A future release - might support additional formats.) + The value of the column, either in binary or in text format. + (As specified in the preceding format byte). <replaceable>n</replaceable> is the above length. </para> |
