Re: pgsql: Expand AclMode to 64 bits

2022-12-01 Thread Andrew Dunstan
On 2022-12-01 Th 19:54, Thomas Munro wrote: > On Sat, Nov 26, 2022 at 3:00 AM Andrew Dunstan wrote: > crake is complaining for the upgrades from v12: > https://buildfarm.postgresql.org/cgi-bin/show_log.pl?nm=crake&dt=2022-11-23%2023%3A32%3A04 > > It seems that there are some tabl

Re: pgsql: Expand AclMode to 64 bits

2022-12-01 Thread Thomas Munro
On Sat, Nov 26, 2022 at 3:00 AM Andrew Dunstan wrote: > >>> crake is complaining for the upgrades from v12: > >>> https://buildfarm.postgresql.org/cgi-bin/show_log.pl?nm=crake&dt=2022-11-23%2023%3A32%3A04 > >>> > >>> It seems that there are some tables dependent on aclitem, bumping on > >>> your i

Re: pgsql: Expand AclMode to 64 bits

2022-11-25 Thread Andrew Dunstan
On 2022-11-25 Fr 01:52, Amit Langote wrote: > Hi Andrew, > > On Thu, Nov 24, 2022 at 10:18 AM Andrew Dunstan wrote: >> On 2022-11-23 We 19:40, Michael Paquier wrote: >>> Hi Andrew, >>> >>> On Wed, Nov 23, 2022 at 07:44:04PM +, Andrew Dunstan wrote: Expand AclMode to 64 bits We

Re: pgsql: Expand AclMode to 64 bits

2022-11-24 Thread Amit Langote
Hi Andrew, On Thu, Nov 24, 2022 at 10:18 AM Andrew Dunstan wrote: > On 2022-11-23 We 19:40, Michael Paquier wrote: > > Hi Andrew, > > > > On Wed, Nov 23, 2022 at 07:44:04PM +, Andrew Dunstan wrote: > >> Expand AclMode to 64 bits > >> > >> We're running out of bits for new permissions. This ch

Re: pgsql: Expand AclMode to 64 bits

2022-11-24 Thread David Rowley
On Thu, 24 Nov 2022 at 08:44, Andrew Dunstan wrote: > Expand AclMode to 64 bits I noticed this causes a few new warnings on MSVC: acl.c(629): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) acl.c(631): warning C4334: '<<': result of 32-bit

Re: pgsql: Expand AclMode to 64 bits

2022-11-23 Thread Andrew Dunstan
On 2022-11-23 We 19:40, Michael Paquier wrote: > Hi Andrew, > > On Wed, Nov 23, 2022 at 07:44:04PM +, Andrew Dunstan wrote: >> Expand AclMode to 64 bits >> >> We're running out of bits for new permissions. This change doubles the >> number of permissions we can accomodate from 16 to 32, so th

Re: pgsql: Expand AclMode to 64 bits

2022-11-23 Thread Michael Paquier
Hi Andrew, On Wed, Nov 23, 2022 at 07:44:04PM +, Andrew Dunstan wrote: > Expand AclMode to 64 bits > > We're running out of bits for new permissions. This change doubles the > number of permissions we can accomodate from 16 to 32, so the > forthcoming new ones for vacuum/analyze don't exhaust

pgsql: Expand AclMode to 64 bits

2022-11-23 Thread Andrew Dunstan
Expand AclMode to 64 bits We're running out of bits for new permissions. This change doubles the number of permissions we can accomodate from 16 to 32, so the forthcoming new ones for vacuum/analyze don't exhaust the pool. Nathan Bossart Reviewed by: Bharath Rupireddy, Kyotaro Horiguchi, Stephen