Files
turso/core/incremental/mod.rs
Glauber Costa 145d6eede7 Implement very basic views using DBSP
This is just the bare minimum that I needed to convince myself that this
approach will work. The only views that we support are slices of the
main table: no aggregations, no joins, no projections.

drop view is implemented.
view population is implemented.
deletes, inserts and updates are implemented.

much like indexes before, a flag must be passed to enable views.
2025-08-10 23:34:04 -05:00

5 lines
68 B
Rust

pub mod dbsp;
pub mod hashable_row;
pub mod operator;
pub mod view;