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

Heikki Linnakangas <heikki.linnakangas@iki.fi>

Commit: 5da417f7c4b2adb5b2aa4d6c86354f8de87dcde9
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
Date: 2011-06-22T09:18:39Z
Releases: 9.2.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