MCPcopy Create free account
hub / github.com/1345414527/MIT6.830 / setRightChild

Method setRightChild

src/java/simpledb/index/BTreeEntry.java:120–122  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

splitInternalPageMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected