1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// SPDX-FileCopyrightText: 2025 Slatian // // SPDX-License-Identifier: LGPL-3.0-only //! General SQL helpers. mod field; mod join; mod prefix; mod table; pub use field::Field; pub use join::Join; pub use join::JoinType; pub use prefix::Prefix; pub use table::Table; #[cfg(test)] mod example_schema;