pgsql: Avoid unsatisfied-external-reference errors in static inlines. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Avoid unsatisfied-external-reference errors in static inlines.
Date
Msg-id E1oBgIW-002ehP-VJ@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Avoid unsatisfied-external-reference errors in static inlines.
List pgsql-committers
Avoid unsatisfied-external-reference errors in static inlines.

Commit 9c727360b neglected the lesson we've learned before:
protect references to backend global variables with #ifndef FRONTEND.

Since there's already a place for static inlines in this file,
move the just-converted functions to that stanza.  Undo the
entirely gratuitous de-macroization of RelationGetNumberOfBlocks
(that one may be okay, since it has no global variable references,
but it's also pointless).

Per buildfarm.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/27d2693187d1bcf2563ee7142ba37d4788c8d52b

Modified Files
--------------
src/include/storage/bufmgr.h | 166 +++++++++++++++++++++----------------------
1 file changed, 80 insertions(+), 86 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Use wildcards instead of manually-maintained file lists in */nls
Next
From: Peter Eisentraut
Date:
Subject: Re: pgsql: Avoid unsatisfied-external-reference errors in static inlines.