Add missing "static" marker.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 21 Apr 2018 15:21:08 +0000 (11:21 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 21 Apr 2018 15:21:18 +0000 (11:21 -0400)
Per pademelon.

src/backend/executor/execPartition.c

index a2f6b29cd5de76516edff5f3c5e3d291d912a9e5..f7bbb804aae7c6a31fa49a337b9a023d681dfc1c 100644 (file)
@@ -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;