You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This mode could cause server startup failure if the database server stopped abruptly while in this mode. The non-exclusive backup mode requires a continuous database connection during the backup.
91
+
If the database server stops abruptly while in this mode, the server could fail to start. The non-exclusive backup mode requires a continuous database connection during the backup.
2021-11-06 [cbe25dcff] Disallow making an empty lexeme via array_to_tsvector().
154
-
-->
155
-
156
141
<listitem>
157
142
<para>
158
143
Generate an error if array_to_tsvector() is passed an empty array element (Jean-Christophe Arnu)
@@ -249,7 +234,7 @@ Adjust JSON numeric literal processing to match the SQL/JSON-standard (Peter Eis
249
234
</para>
250
235
251
236
<para>
252
-
This accepts numeric formats like ".1" and "1.", and disallow trailing junk after numeric literals, like "1.type()".
237
+
This accepts numeric formats like ".1" and "1.", and disallows trailing junk after numeric literals, like "1.type()".
253
238
</para>
254
239
</listitem>
255
240
@@ -309,7 +294,7 @@ Prevent logical replication into tables where the subscription owner is subject
309
294
</para>
310
295
311
296
<para>
312
-
This effectively means that only super users, roles with bypassrls, and table owners can replicate into tables with row-level security policies. (The actual row-level security policies are not checked,
297
+
This effectively means that only superusers, roles with bypassrls, and table owners can replicate into tables with row-level security policies. (The actual row-level security policies are not checked,
313
298
only whether row-level security policies are enforced for subscribing users.)
314
299
</para>
315
300
</listitem>
@@ -402,7 +387,7 @@ Improve the algorithm used to compute random() (Fabien Coelho)
402
387
</para>
403
388
404
389
<para>
405
-
This will cause setseed() followed by random() to return a different value on older servers.
390
+
This will cause setseed() followed by random() to return a different value than on older servers.
406
391
</para>
407
392
</listitem>
408
393
@@ -678,7 +663,7 @@ Allow unique constraints and indexes to treat NULL values as not distinct (Peter
678
663
</para>
679
664
680
665
<para>
681
-
The Postgres default has always been to treat NULL indexed values as distinct, but this can now be changed by creating constraints and indexes using UNIQUE NULLS NOT DISTINCT.
666
+
Previously NULL values were always indexed as distinct values, but this can now be changed by creating constraints and indexes using UNIQUE NULLS NOT DISTINCT.
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. They also can only be
1118
+
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.
Allow pg_basebackup to decompress LZ4 and ZSTD compressed server-side base backups, and LZ4 and ZSTD compress output files (Dipesh Pandit, Jeevan Ladhe)
2123
+
Allow pg_basebackup to decompress LZ4 and Zstandard compressed server-side base backups, and LZ4 and Zstandard compress output files (Dipesh Pandit, Jeevan Ladhe)
The new --compression-method option controls the type of compression, rather than just relying on --compress.
2189
+
The new --compression option controls the type of compression, rather than just relying on --compress.
2201
2190
</para>
2202
2191
</listitem>
2203
2192
@@ -2213,7 +2202,7 @@ Improve pg_receivewal's ability to restart at the proper WAL location (Ronan Dun
2213
2202
2214
2203
<para>
2215
2204
Previously, pg_receivewal would start based on the WAL file stored in the local archive directory, or at the sending server's current WAL flush location. With this change, if the sending server is running
2216
-
Postgres 15 or later, the local archive directory is empty, and a replication slot is specified, the replication slots restart point will be used.
2205
+
Postgres 15 or later, the local archive directory is empty, and a replication slot is specified, the replication slot's restart point will be used.
0 commit comments