diff options
author | Masahiko Sawada <msawada@postgresql.org> | 2025-08-05 10:50:45 -0700 |
---|---|---|
committer | Masahiko Sawada <msawada@postgresql.org> | 2025-08-05 10:50:45 -0700 |
commit | deb674454c5cb7ecabecee2e04ca929eee570df4 (patch) | |
tree | b46215c57a63c94b9a24df8c47f37b1326778bb7 /src/backend/backup/basebackup.c | |
parent | 295a39770e6f7d9c117d52f86ff0596b7d9a590e (diff) |
Add backup_type column to pg_stat_progress_basebackup.
This commit introduces a new column backup_type that indicates the
type of backup being performed: either 'full' or 'incremental'.
Bump catalog version.
Author: Shinya Kato <shinya11.kato@gmail.com>
Reviewed-by: Yugo Nagata <nagata@sraoss.co.jp>
Discussion: https://postgr.es/m/CAOzEurQuzbHwTj1ehk1a+eeQDidJPyrE5s6mYumkjwjZnurhkQ@mail.gmail.com
Diffstat (limited to 'src/backend/backup/basebackup.c')
-rw-r--r-- | src/backend/backup/basebackup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/backup/basebackup.c b/src/backend/backup/basebackup.c index f0f88838dc2..bb7d90aa5d9 100644 --- a/src/backend/backup/basebackup.c +++ b/src/backend/backup/basebackup.c @@ -1048,7 +1048,7 @@ SendBaseBackup(BaseBackupCmd *cmd, IncrementalBackupInfo *ib) sink = bbsink_zstd_new(sink, &opt.compression_specification); /* Set up progress reporting. */ - sink = bbsink_progress_new(sink, opt.progress); + sink = bbsink_progress_new(sink, opt.progress, opt.incremental); /* * Perform the base backup, but make sure we clean up the bbsink even if |