Remove outdated include
authorJohn Naylor <john.naylor@postgresql.org>
Fri, 4 Nov 2022 00:50:57 +0000 (07:50 +0700)
committerJohn Naylor <john.naylor@postgresql.org>
Fri, 4 Nov 2022 00:50:57 +0000 (07:50 +0700)
In the wake of bfb9dfd93, there are no longer any stat() calls in
guc-file.l, but the work leading to dac048f71 did not get the memo.

Noted by Michael Paquier

Discussion: https://www.postgresql.org/message-id/Y2OosGi1Xh9x/lEn%40paquier.xyz

src/backend/utils/misc/guc-file.l

index caa9c902b9f008920220d24926cb047a710b753b..2aa48ec9697cc7a276082d634bd19d249c407873 100644 (file)
@@ -10,7 +10,6 @@
 #include "postgres.h"
 
 #include <ctype.h>
-#include <sys/stat.h>
 #include <unistd.h>
 
 #include "common/file_utils.h"