1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-08 22:02:03 +03:00

Fix #include problems in 9.1 branch.

Remove unnecessary and circular #include of syncrep.h from proc.h.
Add htup.h to tablecmds.h so it will compile without prerequisites.
This commit is contained in:
Tom Lane 2011-09-04 19:10:09 -04:00
parent b6cfede8b6
commit 1ae019f04b
2 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,7 @@
#ifndef TABLECMDS_H
#define TABLECMDS_H
#include "access/htup.h"
#include "nodes/parsenodes.h"
#include "storage/lock.h"
#include "utils/relcache.h"

View File

@ -15,7 +15,6 @@
#define _PROC_H_
#include "access/xlog.h"
#include "replication/syncrep.h"
#include "storage/latch.h"
#include "storage/lock.h"
#include "storage/pg_sema.h"