mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-19 01:24:20 +01:00
42 lines
1.5 KiB
Rust
42 lines
1.5 KiB
Rust
use sql_generation::generation::GenerationContext;
|
|
|
|
use crate::runner::env::{SimulatorEnv, SimulatorTables};
|
|
|
|
pub mod plan;
|
|
pub mod property;
|
|
pub mod query;
|
|
|
|
/// Shadow trait for types that can be "shadowed" in the simulator environment.
|
|
/// Shadowing is a process of applying a transformation to the simulator environment
|
|
/// that reflects the changes made by the query or operation represented by the type.
|
|
/// The result of the shadowing is typically a vector of rows, which can be used to
|
|
/// update the simulator environment or to verify the correctness of the operation.
|
|
/// The `Result` type is used to indicate the type of the result of the shadowing
|
|
/// operation, which can vary depending on the type of the operation being shadowed.
|
|
/// For example, a `Create` operation might return an empty vector, while an `Insert` operation
|
|
/// might return a vector of rows that were inserted into the table.
|
|
pub(crate) trait Shadow {
|
|
type Result;
|
|
fn shadow(&self, tables: &mut SimulatorTables) -> Self::Result;
|
|
}
|
|
|
|
impl GenerationContext for SimulatorEnv {
|
|
fn tables(&self) -> &Vec<sql_generation::model::table::Table> {
|
|
&self.tables.tables
|
|
}
|
|
|
|
fn opts(&self) -> &sql_generation::generation::Opts {
|
|
&self.profile.query.gen_opts
|
|
}
|
|
}
|
|
|
|
impl GenerationContext for &mut SimulatorEnv {
|
|
fn tables(&self) -> &Vec<sql_generation::model::table::Table> {
|
|
&self.tables.tables
|
|
}
|
|
|
|
fn opts(&self) -> &sql_generation::generation::Opts {
|
|
&self.profile.query.gen_opts
|
|
}
|
|
}
|