kstone-core 0.1.0

Core storage engine for KeystoneDB - LSM tree, WAL, and DynamoDB-compatible API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// PartiQL support for KeystoneDB (Phase 4)
///
/// Provides SQL-compatible query language support similar to DynamoDB's PartiQL implementation.
/// Supports SELECT, INSERT, UPDATE, DELETE operations with DynamoDB-specific constraints.

pub mod ast;
pub mod parser;
pub mod validator;
pub mod translator;

pub use ast::*;
pub use parser::*;
pub use validator::*;
pub use translator::*;