Skip to content

Commit c3ed694

Browse files
committed
Revert "corrected copy-on-write-node bug"
This reverts commit fb88a5a.
1 parent 5eacf1e commit c3ed694

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/column/internal.lisp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,9 @@
10121012
:content (vector child)))
10131013
((and (empty-node child)
10141014
(eql 1 (cl-ds.common.rrb:sparse-rrb-node-size parent)))
1015-
nil)
1015+
(if (cl-ds.common.rrb:sparse-rrb-node-contains parent position)
1016+
nil
1017+
parent))
10161018
((cl-ds.common.abstract:acquire-ownership parent tag)
10171019
(if (empty-node child)
10181020
(when (cl-ds.common.rrb:sparse-rrb-node-contains parent position)

0 commit comments

Comments
 (0)