From 381f5cffae0040a402e082adc5d5e7636035d2a7 Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Thu, 2 Oct 2025 22:54:37 +0200 Subject: Remove check for NULL in STRICT function test_bms_make_singleton is defined as STRICT and only takes a single parameter, so there is no need to check that parameter for NULL as a NULL input won't ever reach there. Author: Daniel Gustafsson Discussion: https://postgr.es/m/BC483901-9587-4076-B20F-9A414C66AB78@yesql.se --- src/test/modules/test_bitmapset/test_bitmapset.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/test/modules/test_bitmapset/test_bitmapset.c b/src/test/modules/test_bitmapset/test_bitmapset.c index 6364eba832c..acaa93d2f11 100644 --- a/src/test/modules/test_bitmapset/test_bitmapset.c +++ b/src/test/modules/test_bitmapset/test_bitmapset.c @@ -201,9 +201,6 @@ test_bms_make_singleton(PG_FUNCTION_ARGS) Bitmapset *bms; int32 member; - if (PG_ARGISNULL(0)) - PG_RETURN_NULL(); /* invalid input */ - member = PG_GETARG_INT32(0); bms = bms_make_singleton(member); -- cgit v1.2.3