Merge pull request #449 from citusdata/freebsd-fixes

Freebsd fixes #2 

Fixes #407 #411
pull/451/head
Andres Freund 2016-04-15 09:56:11 -07:00
commit 6860327cf9
4 changed files with 8 additions and 4 deletions

View File

@ -19,6 +19,7 @@
#include "postgres.h"
#include "miscadmin.h"
#include <sys/stat.h>
#include <unistd.h>
#include "commands/dbcommands.h"

View File

@ -20,6 +20,7 @@
#include "postgres.h"
#include "miscadmin.h"
#include <sys/stat.h>
#include <unistd.h>
#include "commands/dbcommands.h"

View File

@ -13,9 +13,9 @@
*-------------------------------------------------------------------------
*/
#include "internal/c.h"
#include "c.h"
#include "libpq-fe.h"
#include "internal/libpq-int.h"
#include "libpq-int.h"
#include "distributed/test_helper_functions.h"

View File

@ -17,11 +17,13 @@
#include "postgres.h"
#include "funcapi.h"
#include <sys/stat.h>
#include <unistd.h>
#include <arpa/inet.h>
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif
#include <netinet/in.h>
#include <sys/stat.h>
#include <unistd.h>
#include "access/hash.h"
#include "access/htup_details.h"