Set the right child id for this entry. Note that updating a BTreeEntry does not actually change the data stored on the page identified by its recordId. After calling this method, you must call BTreeInternalPage.updateEntry() in order for it to take effect. @param rightChild - the new right child @
(BTreePageId rightChild)
| 118 | * @see BTreeInternalPage#updateEntry(BTreeEntry) |
| 119 | */ |
| 120 | public void setRightChild(BTreePageId rightChild) { |
| 121 | this.rightChild = rightChild; |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * set the record id for this entry |