aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2022-05-10 16:34:11 -0400
committerBruce Momjian <bruce@momjian.us>2022-05-10 16:34:11 -0400
commit653443ed83f03820d29604b65dca6a56f3f8ab06 (patch)
tree6e0b1a51dbbcdbf5614dbe30c059fb095aa001e9
parent9d89bb8a025d0374f7705cea9fead4eae9ae80ed (diff)
downloadpostgresql-653443ed83f03820d29604b65dca6a56f3f8ab06.tar.gz
postgresql-653443ed83f03820d29604b65dca6a56f3f8ab06.zip
relnotes: remove sequence replication and update 'postgres -C'
Reported-by: Nathan Bossart, Jonathan Katz Discussion: https://postgr.es/m/20220510194456.GA3716556@nathanxps13
-rw-r--r--doc/src/sgml/release-15.sgml21
1 files changed, 1 insertions, 20 deletions
diff --git a/doc/src/sgml/release-15.sgml b/doc/src/sgml/release-15.sgml
index 213ec926f94..8355bf48276 100644
--- a/doc/src/sgml/release-15.sgml
+++ b/doc/src/sgml/release-15.sgml
@@ -1115,7 +1115,7 @@ Allow "postgres -C" to properly report runtime-computed values (Nathan Bossart)
</para>
<para>
-Previously runtime-computed values data_checksums, wal_segment_size, and data_directory_mode would report values that would not be accurate on the running server.
+Previously runtime-computed values data_checksums, wal_segment_size, and data_directory_mode would report values that would not be accurate on the running server. However, this does not work on a running server.
</para>
</listitem>
@@ -1271,21 +1271,6 @@ Allow publications to be restricted to specific columns (Tomas Vondra, Álvaro H
</listitem>
<!--
-Author: Tomas Vondra <tomas.vondra@postgresql.org>
-2022-03-24 [75b1521da] Add decoding of sequences to built-in replication
--->
-
-<listitem>
-<para>
-Allow logical replication to transfer sequence changes (Tomas Vondra, Cary Huang)
-</para>
-
-<para>
-The sequence option must be specified in the publication. A new system view pg_publication_sequences shows published sequences.
-</para>
-</listitem>
-
-<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-04-07 [344d62fb9] Unlogged sequences
-->
@@ -1294,10 +1279,6 @@ Author: Peter Eisentraut <peter@eisentraut.org>
<para>
Create unlogged sequences and allow them to be skipped in logical replication (Peter Eisentraut)
</para>
-
-<para>
-Individual sequence changes are not WAL logged so there is no performance benefit on the primary.
-</para>
</listitem>
<!--