diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-04-21 11:21:08 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-04-21 11:21:18 -0400 |
commit | a66c03f698f876646b9ef9d5d599e8a6d0ff2e88 (patch) | |
tree | 25c2afffc5cce823dfcf0e0f198d8169f9b197ce /src | |
parent | 56811e57323faa453947eb82f007e323a952e1a1 (diff) | |
download | postgresql-a66c03f698f876646b9ef9d5d599e8a6d0ff2e88.tar.gz postgresql-a66c03f698f876646b9ef9d5d599e8a6d0ff2e88.zip |
Add missing "static" marker.
Per pademelon.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/executor/execPartition.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c index a2f6b29cd5d..f7bbb804aae 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; |