DEFAULT_TRANSACTION_ISOLATION_LEVEL
The default transaction isolation level used for PostgreSQL transactions.
This constant is set to Transaction.IsolationLevel.ReadCommitted, which ensures that a transaction can only read data that has been committed by other transactions. ReadCommitted prevents dirty reads, providing a balance between consistency and performance.