Static method to determine all available column families for a rocksdb database identified by path @param options Options for opening the database @param path Absolute path to rocksdb database @return List<byte[]> List containing the column family names @throws RocksDBException thrown if err
(final Options options,
final String path)
| 438 | * native library. |
| 439 | */ |
| 440 | public static List<byte[]> listColumnFamilies(final Options options, |
| 441 | final String path) throws RocksDBException { |
| 442 | return Arrays.asList(RocksDB.listColumnFamilies(options.nativeHandle_, |
| 443 | path)); |
| 444 | } |
| 445 | |
| 446 | protected void storeOptionsInstance(DBOptionsInterface options) { |
| 447 | options_ = options; |
no outgoing calls