Skip to content

Commit fea5960

Browse files
committed
Do not return NULL for error cases in satisfies_hash_partition().
Since this function is used as a CHECK constraint condition, returning NULL is tantamount to returning TRUE, which would have the effect of letting in a row that doesn't satisfy the hash condition. Admittedly, the cases for which this is done should be unreachable in practice, but that doesn't make it any less a bad idea. It also seems like a dartboard was used to decide which error cases should throw errors as opposed to returning NULL. For the checks for NULL input values, I just switched it to returning false. There's some argument that an error would be better; but the case really should be can't-happen in a generated hash constraint, so it's likely not worth more code for. For the parent-relation-open-failure case, it seems like we might as well let relation_open throw an error, instead of having an impossible-to-diagnose constraint failure. Back-patch to v11 where this code came in. Discussion: https://postgr.es/m/24067.1605134819@sss.pgh.pa.us
1 parent 53c7b4f commit fea5960

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

src/backend/partitioning/partbounds.c

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4653,6 +4653,8 @@ compute_partition_hash_value(int partnatts, FmgrInfo *partsupfunc, Oid *partcoll
46534653
*
46544654
* Returns true if remainder produced when this computed single hash value is
46554655
* divided by the given modulus is equal to given remainder, otherwise false.
4656+
* NB: it's important that this never return null, as the constraint machinery
4657+
* would consider that to be a "pass".
46564658
*
46574659
* See get_qual_for_hash() for usage.
46584660
*/
@@ -4677,9 +4679,9 @@ satisfies_hash_partition(PG_FUNCTION_ARGS)
46774679
ColumnsHashData *my_extra;
46784680
uint64 rowHash = 0;
46794681

4680-
/* Return null if the parent OID, modulus, or remainder is NULL. */
4682+
/* Return false if the parent OID, modulus, or remainder is NULL. */
46814683
if (PG_ARGISNULL(0) || PG_ARGISNULL(1) || PG_ARGISNULL(2))
4682-
PG_RETURN_NULL();
4684+
PG_RETURN_BOOL(false);
46834685
parentId = PG_GETARG_OID(0);
46844686
modulus = PG_GETARG_INT32(1);
46854687
remainder = PG_GETARG_INT32(2);
@@ -4709,14 +4711,11 @@ satisfies_hash_partition(PG_FUNCTION_ARGS)
47094711
int j;
47104712

47114713
/* Open parent relation and fetch partition key info */
4712-
parent = try_relation_open(parentId, AccessShareLock);
4713-
if (parent == NULL)
4714-
PG_RETURN_NULL();
4714+
parent = relation_open(parentId, AccessShareLock);
47154715
key = RelationGetPartitionKey(parent);
47164716

47174717
/* Reject parent table that is not hash-partitioned. */
4718-
if (parent->rd_rel->relkind != RELKIND_PARTITIONED_TABLE ||
4719-
key->strategy != PARTITION_STRATEGY_HASH)
4718+
if (key == NULL || key->strategy != PARTITION_STRATEGY_HASH)
47204719
ereport(ERROR,
47214720
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
47224721
errmsg("\"%s\" is not a hash partitioned table",

src/test/regress/expected/hash_part.out

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@ CREATE TABLE mchash1
1010
PARTITION OF mchash FOR VALUES WITH (MODULUS 4, REMAINDER 0);
1111
-- invalid OID, no such table
1212
SELECT satisfies_hash_partition(0, 4, 0, NULL);
13-
satisfies_hash_partition
14-
--------------------------
15-
16-
(1 row)
17-
13+
ERROR: could not open relation with OID 0
1814
-- not partitioned
1915
SELECT satisfies_hash_partition('tenk1'::regclass, 4, 0, NULL);
2016
ERROR: "tenk1" is not a hash partitioned table
@@ -34,14 +30,14 @@ ERROR: remainder for hash partition must be less than modulus
3430
SELECT satisfies_hash_partition('mchash'::regclass, NULL, 0, NULL);
3531
satisfies_hash_partition
3632
--------------------------
37-
33+
f
3834
(1 row)
3935

4036
-- remainder is null
4137
SELECT satisfies_hash_partition('mchash'::regclass, 4, NULL, NULL);
4238
satisfies_hash_partition
4339
--------------------------
44-
40+
f
4541
(1 row)
4642

4743
-- too many arguments

0 commit comments

Comments
 (0)