Re: remove open-coded popcount in acl.c

2025-03-12 Thread Nathan Bossart
On Wed, Mar 12, 2025 at 01:35:39PM -0500, Nathan Bossart wrote: > Thanks for the quick review. I'll plan on committing this shortly if CI is > happy. Committed. -- nathan

Re: remove open-coded popcount in acl.c

2025-03-12 Thread Álvaro Herrera
On 2025-Mar-12, Nathan Bossart wrote: > On Wed, Mar 12, 2025 at 05:23:25PM +0100, Álvaro Herrera wrote: > > Strange: this code is not covered by any tests. > > > > https://coverage.postgresql.org/src/backend/utils/adt/acl.c.gcov.html#5533 > > https://coverage.postgresql.org/src/backend/utils/adt/

Re: remove open-coded popcount in acl.c

2025-03-12 Thread Nathan Bossart
On Wed, Mar 12, 2025 at 07:34:16PM +0100, Álvaro Herrera wrote: > Thanks :-) I confirm that this covers the code in select_best_grantor > that you're modifying. Thanks for the quick review. I'll plan on committing this shortly if CI is happy. -- nathan

Re: remove open-coded popcount in acl.c

2025-03-12 Thread Nathan Bossart
l, it's easy enough to add some basic tests for the grantor selection machinery. Here's a first try. -- nathan >From d3cf9ca237f647ebcca20c55c8302f00f716c459 Mon Sep 17 00:00:00 2001 From: Nathan Bossart Date: Wed, 12 Mar 2025 10:45:12 -0500 Subject: [PATCH v2 1/1] Remove open-coded pop

Re: remove open-coded popcount in acl.c

2025-03-12 Thread Álvaro Herrera
On 2025-Mar-12, Nathan Bossart wrote: > There's a count_one_bits() function in acl.c that can be replaced with a > call to pg_popcount64(). This isn't performance-critical code, but IMHO we > might as well use the centralized implementation. Makes sense. Patch looks good to me. > @@ -5532,7 +5

remove open-coded popcount in acl.c

2025-03-12 Thread Nathan Bossart
From: Nathan Bossart Date: Wed, 12 Mar 2025 10:45:12 -0500 Subject: [PATCH v1 1/1] Remove open-coded popcount in acl.c. --- src/backend/utils/adt/acl.c | 20 +--- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/src/backend/utils/adt/acl.c b/src/backend/utils/ad