diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-02-18 22:20:27 -0500 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-02-18 22:28:11 -0500 |
commit | 2e1d1ebdffa2c69779573c2e561056cd08541e74 (patch) | |
tree | 57add4b093a91a5d6e31d08a9f683c197f2034a0 | |
parent | 97a804cb2bba49d5ff04795cf500722977e5af9a (diff) | |
download | postgresql-2e1d1ebdffa2c69779573c2e561056cd08541e74.tar.gz postgresql-2e1d1ebdffa2c69779573c2e561056cd08541e74.zip |
Remove redundant function declaration
-rw-r--r-- | src/backend/catalog/partition.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/catalog/partition.c b/src/backend/catalog/partition.c index 31c80c7f1ad..4dddfcc0142 100644 --- a/src/backend/catalog/partition.c +++ b/src/backend/catalog/partition.c @@ -189,9 +189,6 @@ static int get_partition_bound_num_indexes(PartitionBoundInfo b); static int get_greatest_modulus(PartitionBoundInfo b); static uint64 compute_hash_value(PartitionKey key, Datum *values, bool *isnull); -/* SQL-callable function for use in hash partition CHECK constraints */ -PG_FUNCTION_INFO_V1(satisfies_hash_partition); - /* * RelationBuildPartitionDesc * Form rel's partition descriptor |