Reputation:
Is there a Postgres function that would allow me to find which values were inserted during/after a giving time period, even if that given table/row does not have a timestamp value?
Upvotes: 3
Views: 94
Reputation: 25078
No. You can find the involved transaction ids by looking at the hidden system columns xmin and xmax, but you can't find the timestamp.
Upvotes: 1