mirror of
https://github.com/postgres/postgres.git
synced 2025-06-23 14:01:44 +03:00
pg_dump: Remove undocumented "files" output format
This was for demonstration only, and now it was creating compiler
warnings from zlib without an obvious fix (see also
d923125b77
), let's just remove it. The
"directory" format is presumably similar enough anyway.
This commit is contained in:
@ -827,9 +827,6 @@ PrintTOCSummary(Archive *AHX, RestoreOptions *ropt)
|
||||
|
||||
switch (AH->format)
|
||||
{
|
||||
case archFiles:
|
||||
fmtName = "FILES";
|
||||
break;
|
||||
case archCustom:
|
||||
fmtName = "CUSTOM";
|
||||
break;
|
||||
@ -2017,10 +2014,6 @@ _allocAH(const char *FileSpec, const ArchiveFormat fmt,
|
||||
InitArchiveFmt_Custom(AH);
|
||||
break;
|
||||
|
||||
case archFiles:
|
||||
InitArchiveFmt_Files(AH);
|
||||
break;
|
||||
|
||||
case archNull:
|
||||
InitArchiveFmt_Null(AH);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user