pgsql: Remove pointless const qualifiers from function arguments in the - Mailing list pgsql-committers

From Heikki Linnakangas
Subject pgsql: Remove pointless const qualifiers from function arguments in the
Date
Msg-id E1QZJgT-0006c1-JW@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Remove pointless const qualifiers from function arguments in the SSI code.
As Tom Lane pointed out, "const Relation foo" doesn't guarantee that you
can't modify the data the "foo" pointer points to. It just means that you
can't change the pointer to point to something else within the function,
which is not very useful.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/5da417f7c4b2adb5b2aa4d6c86354f8de87dcde9

Modified Files
--------------
src/backend/storage/lmgr/predicate.c |   94 ++++++++++++++++-----------------
src/include/storage/predicate.h      |   26 +++++-----
2 files changed, 59 insertions(+), 61 deletions(-)


pgsql-committers by date:

Previous
From: Robert Haas
Date:
Subject: pgsql: Make the visibility map crash-safe.
Next
From: Heikki Linnakangas
Date:
Subject: pgsql: Remove pointless const qualifiers from function arguments in the