Re: [COMMITTERS] pgsql: Remove too-smart-for-its-own-good optimization of not overwriting

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Greg Stark <gsstark(at)mit(dot)edu>
Cc: Tom Lane <tgl(at)postgresql(dot)org>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: [COMMITTERS] pgsql: Remove too-smart-for-its-own-good optimization of not overwriting
Date: 2010-01-05 03:55:37
Message-ID: 603c8f071001041955w5e89395bjd16db8ffd56f5385@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

On Mon, Jan 4, 2010 at 10:53 PM, Greg Stark <gsstark(at)mit(dot)edu> wrote:
> On Tue, Jan 5, 2010 at 3:42 AM, Robert Haas <robertmhaas(at)gmail(dot)com> wrote:
>> On Mon, Jan 4, 2010 at 9:34 PM, Tom Lane <tgl(at)postgresql(dot)org> wrote:
>>> Log Message:
>>> -----------
>>> Remove too-smart-for-its-own-good optimization of not overwriting the output
>>> files when they haven't changed.  This confuses make because the build fails
>>> to update the file timestamps, and so it keeps on doing the action over again.
>>
>> This doesn't seem like a good idea.  Not rebuilding the output files
>> also saves recompiling the things that depend on them.  For the BKI
>> files thast doesn't matter much, but for schemapg.h it might be
>> significant.  Certainly, if we move to generating more header files
>> this way, it WILL be significant.  If running the script is cheap (and
>> it should be), it's better to take that hit rather than recompiling a
>> whole mess of .c files unnecessarily.
>
>
> I think there's a trick to cover this case but I don't recall what it is.
>
> Does generating a stamp file help? If you had a rule saying to trigger
> generating the output files because the stamp file is out of date
> which might or might not touch the .h file which would trigger more
> files to be rebuilt then everything should work.... except I fear this
> leads us back to the "make rule which generates two files" problem...

The trick being used here was essentially the same as the stamp-file
trick. But it may not be worth worrying about for the moment since
not too many things depend on schemapg.h. I fear it will become an
obstacle to further improvements, however.

...Robert

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2010-01-05 03:56:53 pgsql: Fix a few places where we needed -I.
Previous Message Robert Haas 2010-01-05 03:54:20 Re: [COMMITTERS] pgsql: Remove too-smart-for-its-own-good optimization of not overwriting

Browse pgsql-hackers by date

  From Date Subject
Next Message Alvaro Herrera 2010-01-05 03:57:33 Re: Re: [COMMITTERS] pgsql: Remove too-smart-for-its-own-good optimization of not overwriting
Previous Message Robert Haas 2010-01-05 03:54:20 Re: [COMMITTERS] pgsql: Remove too-smart-for-its-own-good optimization of not overwriting