I have an application written in PHP which uses Doctrine as ORM and bunch of code is executed within single database transaction. Once transaction gets committed, a lot of queries are executed. Is there any way to make use of "Dirty Read" in postgres?
With MySQL I used to use built into PHPStorm database tool to view database state while debugging code. However this is not the case for PostgreSql because "Read uncommitted" isolation level in this RDMS doesn't allow Dirty Read. This really makes a problem as we can't view current transaction state of database.
I know this is extraordinary question and in production we won't use Read uncommitted isolation level, however it's vital for debugging of client code. If you have any way around or anything helpful - I would really appreciate that.