Trying to build the build representation fails.

More specifically

   encode(decode(encode(...)))

fails for dense (small) bloom filter sizes.
This commit is contained in:
Kresten Krab Thorup 2014-04-02 23:57:23 +02:00
parent ce3a7049f2
commit 6bde50dd73

View file

@ -204,6 +204,7 @@ bitmask_build(BM) ->
case element(1,BM) of
array -> BM;
sparse_bitmap -> BM;
dense_bitmap -> BM;
dense_bitmap_ets -> hanoidb_dense_bitmap:build(BM)
end.