@@ -32,7 +32,7 @@ rumTraverseLock(Buffer buffer, bool searchMode)
3232page = BufferGetPage (buffer );
3333if (RumPageIsLeaf (page ))
3434{
35- if (searchMode == FALSE )
35+ if (searchMode == false )
3636{
3737/* we should relock our page */
3838LockBuffer (buffer ,RUM_UNLOCK );
@@ -120,7 +120,7 @@ rumReFindLeafPage(RumBtree btree, RumBtreeStack * stack)
120120RumBtreeStack *
121121rumFindLeafPage (RumBtree btree ,RumBtreeStack * stack )
122122{
123- bool isfirst = TRUE ;
123+ bool isfirst = true ;
124124BlockNumber rootBlkno ;
125125
126126if (!stack )
@@ -141,7 +141,7 @@ rumFindLeafPage(RumBtree btree, RumBtreeStack * stack)
141141{
142142if (RumPageIsLeaf (page )&& !btree -> searchMode )
143143access = RUM_EXCLUSIVE ;
144- isfirst = FALSE ;
144+ isfirst = false ;
145145}
146146else
147147access = rumTraverseLock (stack -> buffer ,btree -> searchMode );
@@ -150,7 +150,7 @@ rumFindLeafPage(RumBtree btree, RumBtreeStack * stack)
150150 * ok, page is correctly locked, we should check to move right ..,
151151 * root never has a right link, so small optimization
152152 */
153- while (btree -> fullScan == FALSE && stack -> blkno != rootBlkno &&
153+ while (btree -> fullScan == false && stack -> blkno != rootBlkno &&
154154btree -> isMoveRight (btree ,page ))
155155{
156156BlockNumber rightlink = RumPageGetOpaque (page )-> rightlink ;
@@ -605,7 +605,7 @@ rumInsertValue(Relation index, RumBtree btree, RumBtreeStack * stack,
605605}
606606}
607607
608- btree -> isDelete = FALSE ;
608+ btree -> isDelete = false ;
609609
610610/* search parent to lock */
611611LockBuffer (parent -> buffer ,RUM_EXCLUSIVE );