From 81bb2d23bdf8d0b102c5fb0abd0a5df6fd74aba9 Mon Sep 17 00:00:00 2001 From: Fujii Masao Date: Sun, 16 Jun 2013 05:15:44 +0900 Subject: [PATCH] Fix pg_restore -l with the directory archive to display the correct format name. Back-patch to 9.1 where the directory archive was introduced. --- src/bin/pg_dump/pg_backup_archiver.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index 7b1bf94630..7764f3d2a3 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -834,6 +834,9 @@ PrintTOCSummary(Archive *AHX, RestoreOptions *ropt) case archCustom: fmtName = "CUSTOM"; break; + case archDirectory: + fmtName = "DIRECTORY"; + break; case archTar: fmtName = "TAR"; break; -- 2.40.0