mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Remove fmgr.h includes from headers that don't really need it.
Most of the fmgr.h includes were obsoleted by 352a24a1f9
. A
few others can be obsoleted using the underlying struct type in an
implementation detail.
Author: Andres Freund
Discussion: https://postgr.es/m/20190803193733.g3l3x3o42uv4qj7l@alap3.anarazel.de
This commit is contained in:
@ -15,7 +15,6 @@
|
||||
#define PATHNODES_H
|
||||
|
||||
#include "access/sdir.h"
|
||||
#include "fmgr.h"
|
||||
#include "lib/stringinfo.h"
|
||||
#include "nodes/params.h"
|
||||
#include "nodes/parsenodes.h"
|
||||
@ -400,7 +399,7 @@ typedef struct PartitionSchemeData
|
||||
bool *parttypbyval;
|
||||
|
||||
/* Cached information about partition comparison functions. */
|
||||
FmgrInfo *partsupfunc;
|
||||
struct FmgrInfo *partsupfunc;
|
||||
} PartitionSchemeData;
|
||||
|
||||
typedef struct PartitionSchemeData *PartitionScheme;
|
||||
|
Reference in New Issue
Block a user