I know PostgresQL pg_dump
guarantees consistency even if DB is modified while dump is going on, but I want to know if the final dump contains any data modified/inserted after the dump started.
To elaborate:
- Time t: I start pg_dump
- Time t+1: There are updates/inserts to the database
- Time t+x: pg_dump completes.
I don't want any of the modifications done in the 'x' period to be present in the dump file.
Is this possible?