Re: BUG #16104: Invalid DSA Memory Alloc Request in Parallel Hash
Tom Lane <[email protected]> Sat, 21 Dec 2019 10:02:05 -0500
| Newsgroups | gmane.comp.db.postgresql.bugs |
|---|---|
| Message-ID | <[email protected]> |
Thomas Munro <[email protected]> writes: > Yeah, I suppose it would be nice to get something reusable out of this > rather than a local definition only. The other important > characteristic is the direction of rotation, so here's a version that > defines pg_rotate_right32() in pg_bitutils.h. In back-branches > without that header we could define it locally. That looks like a good approach. One thought is that you could rely on BITS_PER_BYTE from c.h, rather than CHAR_BIT; then you don't have to #include <limits.h> in bitutils.h, which seems like header creep we could do without. (I think most other places that want this constant use BITS_PER_BYTE, too.) regards, tom lane