]> granicus.if.org Git - postgresql/commit
Minor code-cleanliness improvements for btree.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 18 Sep 2017 20:36:28 +0000 (16:36 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 18 Sep 2017 20:36:28 +0000 (16:36 -0400)
commiteb5c404b17752ca566947f12cb702438dcccdcb1
treea81c6221cc1376d3b911d2b20e9e86e5d737a189
parent66917bfaa7bb0b6bae52a5fe631a8b6443203f55
Minor code-cleanliness improvements for btree.

Make the btree page-flags test macros (P_ISLEAF and friends) return clean
boolean values, rather than values that might not fit in a bool.  Use them
in a few places that were randomly referencing the flag bits directly.

In passing, change access/nbtree/'s only direct use of BUFFER_LOCK_SHARE to
BT_READ.  (Some think we should go the other way, but as long as we have
BT_READ/BT_WRITE, let's use them consistently.)

Masahiko Sawada, reviewed by Doug Doole

Discussion: https://postgr.es/m/CAD21AoBmWPeN=WBB5Jvyz_Nt3rmW1ebUyAnk3ZbJP3RMXALJog@mail.gmail.com
contrib/amcheck/verify_nbtree.c
contrib/pgstattuple/pgstattuple.c
src/backend/access/nbtree/nbtpage.c
src/backend/access/nbtree/nbtxlog.c
src/include/access/nbtree.h