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
I tried using rocksdb to read some files and it seems nothing is accessed
importrocksdbfrom'rocksdb'constdb=rocksdb('./sui')try{console.log('Opening database...')awaitnewPromise((resolve,reject)=>{db.open({readOnly: true},error=>{if(error)reject(error)elseresolve()})})console.log('Database opened')forawait(const[key,value]ofdb.iterator()){console.dir({ key, value })}}catch(error){console.error(error)}
While if I try level-rocksdb for the same files, it prints this error below, meaning there is actual datas but i'd assume rocksdb is only reading the empty default column.
I tried using rocksdb to read some files and it seems nothing is accessed
While if I try
level-rocksdb
for the same files, it prints this error below, meaning there is actual datas but i'd assumerocksdb
is only reading the empty default column.How do you specify the column to read ?
The text was updated successfully, but these errors were encountered: