diff PostgreSQL/NEWS @ 467:ff84104f7842 pg-transactions

renamed v6.2 to REV2 + removed 'default' TransactionMode + renamed 'READ COMMITTED' into 'ReadCommitted'
author Alain Mazy <am@osimis.io>
date Mon, 05 Feb 2024 09:43:14 +0100
parents 8b7c1c423367
children 8f1f26680527
line wrap: on
line diff
--- a/PostgreSQL/NEWS	Wed Jan 31 15:43:10 2024 +0100
+++ b/PostgreSQL/NEWS	Mon Feb 05 09:43:14 2024 +0100
@@ -3,12 +3,11 @@
 
 * Experimental debug feature:
   Introduced a new configuration to select the transaction isolation level
-    "TransactionMode": "SERIALIZABLE"
-  Allowed values: "SERIALIZABLE", "READ COMMITTED", "DEFAULT".
-  The "SERIALIZABLE" mode was the only available value up to now.  It is still the default
+    "TransactionMode": "Serializable"
+  Allowed values: "Serializable", "ReadCommitted".
+  The "Serializable" mode was the only available value up to now.  It is still the default
   value now.
-  The "READ COMMITTED" is possible now due to rewrites of SQL queries.
-  The "DEFAULT" value uses the default transaction isolation level defined at the database level.
+  The "ReadCommitted" is possible now due to rewrites of SQL queries.
 * internals:
   - Added a UNIQUE constraint on Resources.publicId to detect DB inconsistencies
 * New "EnableVerboseLogs" configuration to show SQL statements being executed.