Re: Control your disk usage in PG: Introduction to Disk Quota Extension
Daniel Gustafsson <daniel@yesql.se>
From: Daniel Gustafsson <daniel@yesql.se>
To: Haozhou Wang <hawang@pivotal.io>
Cc: David Steele <david@pgmasters.net>,
Michael Paquier <michael@paquier.xyz>,
Alvaro Herrera <alvherre@2ndquadrant.com>,
Hubert Zhang <hzhang@pivotal.io>,
Thomas Munro <thomas.munro@gmail.com>,
Andres Freund <andres@anarazel.de>,
Robert Haas <robertmhaas@gmail.com>,
"pgsql-hackers@postgresql.org" <pgsql-hackers@postgresql.org>,
Tomas Vondra <tomas.vondra@2ndquadrant.com>,
Heikki Linnakangas <hlinnakangas@pivotal.io>
Date: 2020-07-01T08:36:43Z
Lists: pgsql-hackers
> On 27 Mar 2020, at 11:22, Haozhou Wang <hawang@pivotal.io> wrote:
> We rebased this patch with the newest master.
This patch now fails to build according to Travis:
smgr.c: In function ‘smgrtruncate’:
smgr.c:578:47: error: passing argument 4 of ‘smgrtruncate_hook’ makes integer from pointer without a cast [-Werror=int-conversion]
(*smgrtruncate_hook)(reln, forknum, nforks, nblocks);
^
smgr.c:578:47: note: expected ‘BlockNumber {aka unsigned int}’ but argument is of type ‘BlockNumber * {aka unsigned int *}’
The warning is also present in the Windows build:
src/backend/storage/smgr/smgr.c(578): warning C4047: 'function' : 'BlockNumber' differs in levels of indirection from 'BlockNumber *' [C:\projects\postgresql\postgres.vcxproj]
src/backend/storage/smgr/smgr.c(578): warning C4024: 'smgrtruncate_hook' : different types for formal and actual parameter 4 [C:\projects\postgresql\postgres.vcxproj]
2 Warning(s)
Marking the patch as Waiting for Author.
cheers ./daniel