1 *** btree/bt_split.c.orig Sat Feb 8 10:14:10 1997
2 --- btree/bt_split.c Sat Feb 8 10:14:51 1997
5 * where we decide to try and copy too much onto the left page.
6 * Make sure that doesn't happen.
8 ! if (skip <= off && used + nbytes >= full || nxt == top - 1) {
13 * where we decide to try and copy too much onto the left page.
14 * Make sure that doesn't happen.
17 ! used + nbytes + sizeof(indx_t) >= full || nxt == top - 1) {
23 memmove((char *)l + l->upper, src, nbytes);
28 if (!isbigkey || bigkeycnt == 3)
31 memmove((char *)l + l->upper, src, nbytes);
34 ! used += nbytes + sizeof(indx_t);
36 if (!isbigkey || bigkeycnt == 3)