Skip to content

Commit 981bd24

Browse files
committed
Workaround misfeature of MSVC. Just to make compilation go further
1 parent b6d8c33 commit 981bd24

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/bin/pg_dump/pg_backup_db.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1387,7 +1387,11 @@ transferCheckControlData(Archive *fout, const char *transfer_dir, bool isRestore
13871387
}
13881388
else
13891389
{
1390+
#ifdef __GNUC__
13901391
char dumpedInfo[strlen(serverInfo)];
1392+
#else
1393+
char dumpedInfo[1024];
1394+
#endif
13911395
/*
13921396
* In restore mode read info from pg_control in transfer_dir
13931397
* and compare it with the result of select. In case of any

0 commit comments

Comments
 (0)