Skip to main content

ff_backend_sqlite/queries/
mod.rs

1//! SQLite dialect-forked query modules per RFC-023 §4.1.
2//!
3//! PG migrations and runtime queries cannot be shared with SQLite —
4//! the dialect gap (partitioning, `RETURNING` subsets, `jsonb`, etc.)
5//! requires a parallel module tree. This tree mirrors
6//! `ff-backend-postgres` one-for-one so parity review is a straight
7//! file-level diff.
8//!
9//! Phase 2a.1 establishes the module layout. Method bodies land in
10//! Phase 2a.2 (attempt / exec_core) and Phase 2a.3 (lease / dispatch).
11
12pub mod attempt;
13pub mod budget;
14pub mod claim_grant;
15pub mod dispatch;
16pub mod exec_core;
17pub mod flow;
18pub mod flow_staging;
19pub mod lease;
20pub mod operator;
21pub mod quota;
22pub mod reads;
23pub mod signal;
24pub mod stream;
25pub mod suspend;
26pub mod waitpoint;