On Wed, Mar 18, 2026 at 6:41 PM Tom Lane <[email protected]> wrote: > In short: maybe we don't want to go in the direction Nathan suggests, > but if we keep these types we should make an effort to use them > more consistently, so there's work to be done in that direction too.
I'm definitely -1 on trying to use them more consistently. This is a 261 line patch. The reverse patch to use these types everywhere that we use integers as a collection of bits is probably 100 times that size. If you took that idea to its logical conclusion, every flags variable in the backend would end up getting converted. I'm not entirely sure that this is worth standardizing at all; if someone thinks that using bits8 or whatever makes the code more rather than less clear in a certain context, who am I to argue? If someone else prefers uint8 in another context, also fine. But if we are going to standardize, I think the only sensible choice is what Nathan's done here. The reverse would be an insane amount of code churn. -- Robert Haas EDB: http://www.enterprisedb.com
