]> granicus.if.org Git - postgresql/commit
Update leakproofness markings on some btree comparison functions.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 31 Dec 2018 21:38:11 +0000 (16:38 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 31 Dec 2018 21:38:11 +0000 (16:38 -0500)
commitd01e75d68eb2a478c57af92cc38f23f3ce5e1e0f
tree1c131ab85d128b1baa2cc30f377cc4263b28fb91
parente439c6f0c3ddc6e4b71922ec326cb796c2885656
Update leakproofness markings on some btree comparison functions.

Mark pg_lsn and oidvector comparison functions as leakproof.  Per
discussion, these clearly are leakproof so we might as well mark them so.

On the other hand, remove leakproof markings from name comparison
functions other than equal/not-equal.  Now that these depend on
varstr_cmp, they can't be considered leakproof if text comparison isn't.
(This was my error in commit 586b98fdf.)

While at it, add some opr_sanity queries to catch cases where related
functions do not have the same volatility and leakproof markings.
This would clearly be bogus for commutator or negator pairs.  In the
domain of btree comparison functions, we do have some exceptions,
because text equality is leakproof but inequality comparisons are not.
That's odd on first glance but is reasonable (for now anyway) given
the much greater complexity of the inequality code paths.

Discussion: https://postgr.es/m/20181231172551.GA206480@gust.leadboat.com
src/include/catalog/catversion.h
src/include/catalog/pg_proc.dat
src/test/regress/expected/opr_sanity.out
src/test/regress/sql/opr_sanity.sql