Remove unneeded includes of <sys/stat.h>

Since bfb9dfd, none of the files updated in this commit have any stat()
calls, so these inclusions are not necessary, for the same reasons as
233cf6e.

Per discussion with John Naylor.

Discussion: https://postgr.es/m/CAFBsxsGGGX7KD6RxbNoSJzuSc8Gz3hOxcfhTOMLB_hJcm68dKQ@mail.gmail.com
This commit is contained in:
Michael Paquier 2022-11-05 12:31:28 +09:00
parent a5ac3e76fe
commit 2a71de8915
3 changed files with 0 additions and 3 deletions

View File

@ -102,7 +102,6 @@
*/
#include "postgres.h"
#include <sys/stat.h>
#include <unistd.h>
#include "access/heapam.h"

View File

@ -20,7 +20,6 @@
#include <fcntl.h>
#include <unistd.h>
#include <sys/stat.h>
#include "common/file_utils.h"
#include "miscadmin.h"

View File

@ -14,7 +14,6 @@
#include <ctype.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <time.h>
#include "common/file_utils.h"