Re: A couple items on TODO - Mailing list pgsql-hackers

From Tom Lane
Subject Re: A couple items on TODO
Date
Msg-id 1138.998622746@sss.pgh.pa.us
Whole thread Raw
In response to RE: A couple items on TODO  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Responses Re: A couple items on TODO
Re: A couple items on TODO
List pgsql-hackers
"Christopher Kings-Lynne" <chriskl@familyhealth.com.au> writes:
> I have noticed while working on command.c and heap.c that half the functions
> pass 'const char *' and the other half pass just 'char *'.  This is a pain

Yeah, people have started to use 'const' in new code, but the older
stuff doesn't use it, which means that the net effect is probably
more annoyance than help.  I'm afraid that if we attack this in an
incremental way, we'll end up with code that may have a lot of const
markers in the declarations, but the actual code is riddled with
explicit casts to remove const because at one time or another that
was necessary in a particular place.

Can anyone think of a way to get from here to there without either
a lot of leftover cruft, or a "big bang" massive changeover?
        regards, tom lane


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Permissions for large-object comments
Next
From: mlw
Date:
Subject: Re: OLAP, Aggregates, and order of operations