mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-27 13:04:20 +01:00
To be used in DBSP-based projections. This will compile an expression to VDBE bytecode and execute it. To do that we need to add a new type of Expression, which we call a Register. This is a way for us to pass parameters to a DBSP program which will be not columns or literals, but inputs from the DBSP deltas.
6 lines
91 B
Rust
6 lines
91 B
Rust
pub mod dbsp;
|
|
pub mod expr_compiler;
|
|
pub mod hashable_row;
|
|
pub mod operator;
|
|
pub mod view;
|