cqlite-core 0.11.0

Core engine for CQLite — read Apache Cassandra 5.0 SSTables locally without a cluster
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Testing utilities module
pub mod dataset_helpers;

pub use dataset_helpers::{
    // Root-agnostic helpers
    list_tables,
    // Explicit-root helpers for tests and tools
    list_tables_at,
    load_metadata,
    load_metadata_at,
    resolve_table_to_sstable_path,
    resolve_table_to_sstable_path_at,
    TableInfo,
};