Remove redundant prototypes for SQL callable functions.
authorAndres Freund
Fri, 16 Aug 2019 17:16:42 +0000 (10:16 -0700)
committerAndres Freund
Fri, 16 Aug 2019 17:17:32 +0000 (10:17 -0700)
These aren't needed after 352a24a1f9d6. The remaining prototypes are
not defined on the SQL level.

Author: Andres Freund
Discussion: https://postgr.es/m/20190803193733[email protected]

src/include/catalog/pg_publication.h
src/include/executor/nodeAgg.h

index d4bf5b1e2fa8d6ebecd0d7b051346d035686c3c7..20a2f0ac1bf756004ff48aa294c35f1159a3eb5d 100644 (file)
@@ -92,6 +92,5 @@ extern ObjectAddress publication_add_relation(Oid pubid, Relation targetrel,
 extern Oid get_publication_oid(const char *pubname, bool missing_ok);
 extern char *get_publication_name(Oid pubid, bool missing_ok);
 
-extern Datum pg_get_publication_tables(PG_FUNCTION_ARGS);
 
 #endif                         /* PG_PUBLICATION_H */
index 1a8ca98a8c3bd35a07242ef8e3f7fc5b92f0b595..68c9e5f5400dbe36a0cd3f4f073dc146643d5e0b 100644 (file)
@@ -311,6 +311,4 @@ extern void ExecReScanAgg(AggState *node);
 
 extern Size hash_agg_entry_size(int numAggs);
 
-extern Datum aggregate_dummy(PG_FUNCTION_ARGS);
-
 #endif                         /* NODEAGG_H */