Home | History | Annotate | Download | only in btree

Lines Matching defs:parent

126 		 * be a parent page for the key.  If a split later occurs, the
155 EPGNO *parent;
180 for (level = 0; (parent = BT_POP(t)) != NULL; ++level) {
181 /* Get the parent page. */
182 if ((h = mpool_get(t->bt_mp, parent->pgno, 0)) == NULL)
186 if (parent->index != NEXTINDEX(h) - 1) {
187 idx = parent->index + 1;
232 EPGNO *parent;
258 for (level = 0; (parent = BT_POP(t)) != NULL; ++level) {
259 /* Get the parent page. */
260 if ((h = mpool_get(t->bt_mp, parent->pgno, 0)) == NULL)
264 if (parent->index != 0) {
265 idx = parent->index - 1;