You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
because the defaultColumnFamilyHandle_ wasn't set up in the 2 and 4 arg open methods of TtlDb.
e.g. RocksDB's open implementation that configures the default column family handle:
Expected behavior
TtlDb.java
newIterator()
should successfully use the default column family handle similar to how it works when using RocksDB.java.Actual behavior
It fails with:
because the
defaultColumnFamilyHandle_
wasn't set up in the 2 and 4 argopen
methods of TtlDb.e.g. RocksDB's open implementation that configures the default column family handle:
Contrast that with TtlDB.java's open method that accepts an Option:
Steps to reproduce the behavior
Instead of a RocksDb, configure a TtlDB with Options and try using an iterator.
The text was updated successfully, but these errors were encountered: