Remove pointless const qualifiers from function arguments in the SSI code.

Heikki Linnakangas <heikki.linnakangas@iki.fi>

Commit: fbaa7a23e4d225f3422f5ede9897d49cb7ca3ff5
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
Date: 2011-06-22T09:21:34Z
Releases: 9.1.0
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.

Files

PathChange+/−
src/backend/storage/lmgr/predicate.c modified +46 −48
src/include/storage/predicate.h modified +13 −13