Contents
pg_backup_start_time()
A function returning the start time of the current exclusive backup
This entry relates to a PostgreSQL feature which is deprecated and may be desupported in future releases.
pg_backup_start_time()
is a system function returning the start time of the current exclusive backup, if one is in progress,
pg_backup_start_time()
was added in PostgreSQL 9.3 and removed in PostgreSQL 15.
Usage
pg_backup_start_time () → timestamp with time zone
NULL
is returned if no exclusive backup is in progress.
Change history
- PostgreSQL 15
- removed (commit 58c41712)
- PostgreSQL 9.3
- added (commit 68de499b)
Examples
See pg_start_backup() for a usage example.
References
- PostgreSQL documentation: Backup Control Functions