Skip to content

Commit

Permalink
Merge branch 'REL_2_5'
Browse files Browse the repository at this point in the history
  • Loading branch information
funny-falcon committed May 16, 2024
2 parents d0be25c + 721d5d2 commit 8d13580
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions doc/pgprobackup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ backup_user@backup_host:~$ pg_probackup backup \
--remote-user=postgres \
-U backup \
-d backupdb
INFO: Backup start, pg_probackup version: 2.5.14, instance: node, backup ID: SCUN1Q, backup mode: FULL, wal mode: STREAM, remote: true, compress-algorithm: zlib, compress-level: 1
INFO: Backup start, pg_probackup version: 2.5.15, instance: node, backup ID: SCUN1Q, backup mode: FULL, wal mode: STREAM, remote: true, compress-algorithm: zlib, compress-level: 1
INFO: This PostgreSQL instance was initialized with data block checksums. Data block corruption will be detected
INFO: Database backup start
INFO: wait for pg_backup_start()
Expand Down Expand Up @@ -604,7 +604,7 @@ backup_user@backup_host:~$ pg_probackup backup \
--remote-user=postgres \
-U backup \
-d backupdb
INFO: Backup start, pg_probackup version: 2.5.14, instance: node, backup ID: SCUN22, backup mode: DELTA, wal mode: STREAM, remote: true, compress-algorithm: zlib, compress-level: 1
INFO: Backup start, pg_probackup version: 2.5.15, instance: node, backup ID: SCUN22, backup mode: DELTA, wal mode: STREAM, remote: true, compress-algorithm: zlib, compress-level: 1
INFO: This PostgreSQL instance was initialized with data block checksums. Data block corruption will be detected
INFO: Database backup start
INFO: wait for pg_backup_start()
Expand Down Expand Up @@ -692,7 +692,7 @@ backup_user@backup_host:~$ pg_probackup backup \
--instance=node \
--stream \
--compress-algorithm=zlib
INFO: Backup start, pg_probackup version: 2.5.14, instance: node, backup ID: SCUN2C, backup mode: DELTA, wal mode: STREAM, remote: true, compress-algorithm: zlib, compress-level: 1
INFO: Backup start, pg_probackup version: 2.5.15, instance: node, backup ID: SCUN2C, backup mode: DELTA, wal mode: STREAM, remote: true, compress-algorithm: zlib, compress-level: 1
INFO: This PostgreSQL instance was initialized with data block checksums. Data block corruption will be detected
INFO: Database backup start
INFO: wait for pg_backup_start()
Expand Down Expand Up @@ -2989,7 +2989,7 @@ from-replica = false
block-size = 8192
xlog-block-size = 8192
checksum-version = 1
program-version = 2.5.14
program-version = 2.5.15
server-version = 16

#Result backup info
Expand Down Expand Up @@ -3135,7 +3135,7 @@ pg_probackup show -B <replaceable>backup_dir</replaceable> --instance=<replaceab
"block-size": 8192,
"xlog-block-size": 8192,
"checksum-version": 1,
"program-version": "2.5.14",
"program-version": "2.5.15",
"server-version": "16",
"current-tli": 16,
"parent-tli": 2,
Expand Down Expand Up @@ -3294,7 +3294,7 @@ pg_probackup show -B <replaceable>backup_dir</replaceable> [--instance=<replacea
"block-size": 8192,
"xlog-block-size": 8192,
"checksum-version": 1,
"program-version": "2.5.14",
"program-version": "2.5.15",
"server-version": "16",
"current-tli": 1,
"parent-tli": 0,
Expand Down Expand Up @@ -3323,7 +3323,7 @@ pg_probackup show -B <replaceable>backup_dir</replaceable> [--instance=<replacea
"block-size": 8192,
"xlog-block-size": 8192,
"checksum-version": 1,
"program-version": "2.5.14",
"program-version": "2.5.15",
"server-version": "16",
"current-tli": 1,
"parent-tli": 1,
Expand Down Expand Up @@ -3352,7 +3352,7 @@ pg_probackup show -B <replaceable>backup_dir</replaceable> [--instance=<replacea
"block-size": 8192,
"xlog-block-size": 8192,
"checksum-version": 1,
"program-version": "2.5.14",
"program-version": "2.5.15",
"server-version": "16",
"current-tli": 1,
"parent-tli": 1,
Expand Down Expand Up @@ -3381,7 +3381,7 @@ pg_probackup show -B <replaceable>backup_dir</replaceable> [--instance=<replacea
"block-size": 8192,
"xlog-block-size": 8192,
"checksum-version": 1,
"program-version": "2.5.14",
"program-version": "2.5.15",
"server-version": "16",
"current-tli": 1,
"parent-tli": 1,
Expand Down Expand Up @@ -3409,7 +3409,7 @@ pg_probackup show -B <replaceable>backup_dir</replaceable> [--instance=<replacea
"block-size": 8192,
"xlog-block-size": 8192,
"checksum-version": 1,
"program-version": "2.5.14",
"program-version": "2.5.15",
"server-version": "16",
"current-tli": 1,
"parent-tli": 0,
Expand Down
2 changes: 1 addition & 1 deletion src/pg_probackup.h
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ typedef enum ShowFormat
#define BYTES_INVALID (-1) /* file didn`t changed since previous backup, DELTA backup do not rely on it */
#define FILE_NOT_FOUND (-2) /* file disappeared during backup */
#define BLOCKNUM_INVALID (-1)
#define PROGRAM_VERSION "2.5.14"
#define PROGRAM_VERSION "2.5.15"

/* update when remote agent API or behaviour changes */
#define AGENT_PROTOCOL_VERSION 20509
Expand Down

0 comments on commit 8d13580

Please sign in to comment.