summaryrefslogtreecommitdiff
path: root/src/backend/foreign
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2018-02-19 12:07:44 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2018-02-19 12:07:44 -0500
commit524d64ea8e3e49b4fda41ff9b2f048b697384058 (patch)
treed6b40bcebf91ebdad805aac2fd91ea001e04e495 /src/backend/foreign
parent8c44802b6ed4846accb08e2ffe93040b8b42aae9 (diff)
downloadpostgresql-524d64ea8e3e49b4fda41ff9b2f048b697384058.tar.gz
Remove bogus "extern" annotations on function definitions.
While this is not illegal C, project style is to put "extern" only on declarations not definitions. David Rowley Discussion: https://postgr.es/m/CAKJS1f9RKLWXcMBQhvDYhmsMEo+ALuNgA-NE+AX5Uoke9DJ2Xg@mail.gmail.com
Diffstat (limited to 'src/backend/foreign')
-rw-r--r--src/backend/foreign/foreign.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/foreign/foreign.c b/src/backend/foreign/foreign.c
index e7fd507fa5..eac78a5d31 100644
--- a/src/backend/foreign/foreign.c
+++ b/src/backend/foreign/foreign.c
@@ -712,7 +712,7 @@ get_foreign_server_oid(const char *servername, bool missing_ok)
* path list in RelOptInfo is anyway sorted by total cost we are likely to
* choose the most efficient path, which is all for the best.
*/
-extern Path *
+Path *
GetExistingLocalJoinPath(RelOptInfo *joinrel)
{
ListCell *lc;