diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-04-08 14:35:29 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-04-08 14:35:29 -0400 |
commit | cefa3871534d2c467a520820c0ae3f002a46d8e4 (patch) | |
tree | b2b3f464446ddc3109db9cffc81307ed85cc8f3b /src/backend/parser/parse_utilcmd.c | |
parent | 9c0a0de4c91b2dc911220d769cf2c5f754cfcb90 (diff) | |
download | postgresql-cefa3871534d2c467a520820c0ae3f002a46d8e4.tar.gz postgresql-cefa3871534d2c467a520820c0ae3f002a46d8e4.zip |
Merge catalog/pg_foo_fn.h headers back into pg_foo.h headers.
Traditionally, include/catalog/pg_foo.h contains extern declarations
for functions in backend/catalog/pg_foo.c, in addition to its function
as the authoritative definition of the pg_foo catalog's rowtype.
In some cases, we'd been forced to split out those extern declarations
into separate pg_foo_fn.h headers so that the catalog definitions
could be #include'd by frontend code. That problem is gone as of
commit 9c0a0de4c, so let's undo the splits to make things less
confusing.
Discussion: https://postgr.es/m/23690.1523031777@sss.pgh.pa.us
Diffstat (limited to 'src/backend/parser/parse_utilcmd.c')
-rw-r--r-- | src/backend/parser/parse_utilcmd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/parser/parse_utilcmd.c b/src/backend/parser/parse_utilcmd.c index bbbb1a8c1fe..f9f9904bad8 100644 --- a/src/backend/parser/parse_utilcmd.c +++ b/src/backend/parser/parse_utilcmd.c @@ -36,7 +36,6 @@ #include "catalog/pg_am.h" #include "catalog/pg_collation.h" #include "catalog/pg_constraint.h" -#include "catalog/pg_constraint_fn.h" #include "catalog/pg_opclass.h" #include "catalog/pg_operator.h" #include "catalog/pg_statistic_ext.h" |