From 2d774aaf1801b0338241cca9409803451ef28a6a Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 1 Jan 2016 13:00:13 -0500 Subject: Split out pg_operator.h function declarations to new file pg_operator_fn.h. Commit a2e35b53c39b2a27 added an #include of catalog/objectaddress.h to pg_operator.h, making it impossible for client-side code to #include pg_operator.h. It's not entirely clear whether any client-side code needs to include pg_operator.h, but it seems prudent to assume that there is some such code somewhere. Therefore, split off the function definitions into a new file pg_operator_fn.h, similarly to what we've done for some other catalog header files. Back-patch of part of commit 0dab5ef39b3d9d86. --- src/backend/commands/operatorcmds.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/backend/commands/operatorcmds.c') diff --git a/src/backend/commands/operatorcmds.c b/src/backend/commands/operatorcmds.c index b4a1aac3a14..2257c562567 100644 --- a/src/backend/commands/operatorcmds.c +++ b/src/backend/commands/operatorcmds.c @@ -39,6 +39,7 @@ #include "catalog/dependency.h" #include "catalog/indexing.h" #include "catalog/pg_operator.h" +#include "catalog/pg_operator_fn.h" #include "catalog/pg_type.h" #include "commands/alter.h" #include "commands/defrem.h" -- cgit v1.2.3