diff options
author | jk7744.park <jk7744.park@samsung.com> | 2015-10-23 15:11:57 +0900 |
---|---|---|
committer | jk7744.park <jk7744.park@samsung.com> | 2015-10-23 15:11:57 +0900 |
commit | bb4826beb2528cfebcae9d15a794ae8988b2e571 (patch) | |
tree | c101aed69979b12c7678af348bad14afdc9e28b7 /patch.1.2 | |
parent | 89032ff0d59b0e00e6ec3ead7b7a4b75cd6f208f (diff) | |
download | db4-accepted/tizen/2.4/base/20151026.095755.tar.gz db4-accepted/tizen/2.4/base/20151026.095755.tar.bz2 db4-accepted/tizen/2.4/base/20151026.095755.zip |
tizen 2.4 releasetizen_2.4_mobile_releasesubmit/tizen_2.4_base/20151026.090921submit/tizen_2.4_base/20151026.085810accepted/tizen/2.4/base/20151026.095755tizen_2.4_baseaccepted/tizen_2.4_base
Diffstat (limited to 'patch.1.2')
-rw-r--r-- | patch.1.2 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/patch.1.2 b/patch.1.2 new file mode 100644 index 0000000..a343909 --- /dev/null +++ b/patch.1.2 @@ -0,0 +1,19 @@ +*** btree/bt_split.c Tue Jul 26 14:22:02 1994 +--- btree/bt_split.c Sat Jan 4 14:38:55 1997 +*************** +*** 673,679 **** + * where we decide to try and copy too much onto the left page. + * Make sure that doesn't happen. + */ +! if (skip <= off && used + nbytes >= full) { + --off; + break; + } +--- 673,679 ---- + * where we decide to try and copy too much onto the left page. + * Make sure that doesn't happen. + */ +! if (skip <= off && used + nbytes >= full || nxt == top - 1) { + --off; + break; + } |