Home > Net >  Why is directory pg_commit_ts empty?
Why is directory pg_commit_ts empty?

Time:09-05

I have installed PostgreSQL 13 and created a new database, a few tables and inserted data on those tables. I used transactions to insert data, but still pg_commit_ts is empty.

what is the function of this directory and why is it empty?

CodePudding user response:

The directory is empty because track_commit_timestamp is off. It is used to persist commit timestamps.

  • Related