READ COMMITTED
RU: READ COMMITTED
The default PostgreSQL isolation level. Each statement within a transaction takes a fresh snapshot that includes all commits made before that statement began, so two successive SELECT statements in the same transaction can see different data. Prevents dirty reads but allows non-repeatable reads and phantom reads.