We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5adeae5 commit 70d85d1Copy full SHA for 70d85d1
catalog.c
@@ -386,6 +386,9 @@ pgBackupWriteControl(FILE *out, pgBackup *backup)
386
fprintf(out, "#Configuration\n");
387
fprintf(out, "backup-mode = %s\n", pgBackupGetBackupMode(backup));
388
fprintf(out, "stream = %s\n", backup->stream?"true":"false");
389
+ fprintf(out, "compress_alg = %s\n", deparse_compress_alg(compress_alg));
390
+ fprintf(out, "compress_level = %d\n", compress_level);
391
+ fprintf(out, "from_replica = %s\n", from_replica?"true":"false");
392
393
fprintf(out, "\n#Compatibility\n");
394
fprintf(out, "block-size = %u\n", backup->block_size);
0 commit comments