Looks like we need #include <sys/stat.h> here on some

platforms.  Per buildfarm.
This commit is contained in:
Tom Lane 2010-02-07 22:00:53 +00:00
parent b9b8831ad6
commit 1c05b0b4ea

View File

@ -33,13 +33,14 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/cache/relmapper.c,v 1.1 2010/02/07 20:48:10 tgl Exp $ * $PostgreSQL: pgsql/src/backend/utils/cache/relmapper.c,v 1.2 2010/02/07 22:00:53 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h" #include "postgres.h"
#include <fcntl.h> #include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#include "access/xact.h" #include "access/xact.h"