btree4j icon indicating copy to clipboard operation
btree4j copied to clipboard

there's an exception when key is greater than 127

Open gongchangyou opened this issue 2 years ago • 0 comments

    for (int i = 0; i < 1000; i++) {
        Value k = new Value(i);
        btree.addValue(k, i);

}

    IndexConditionBW bw = new IndexConditionBW(new Value(100), new Value(128));

btree.search(bw, callback) will throw exception

            throw new IllegalStateException("range scan failed... bug?");

gongchangyou avatar Aug 27 '22 08:08 gongchangyou