From a66c03f698f876646b9ef9d5d599e8a6d0ff2e88 Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Sat, 21 Apr 2018 11:21:08 -0400
Subject: [PATCH] Add missing "static" marker.

Per pademelon.
---
 src/backend/executor/execPartition.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c
index a2f6b29cd5..f7bbb804aa 100644
--- a/src/backend/executor/execPartition.c
+++ b/src/backend/executor/execPartition.c
@@ -1081,7 +1081,7 @@ FormPartitionKeyDatum(PartitionDispatch pd,
  * Return value is index of the partition (>= 0 and < partdesc->nparts) if one
  * found or -1 if none found.
  */
-int
+static int
 get_partition_for_tuple(Relation relation, Datum *values, bool *isnull)
 {
 	int			bound_offset;
-- 
2.40.0