1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
//! PostgreSQL related query builder extensions //! //! Everything in this module is re-exported from database agnostic locations. //! You should rely on the re-exports rather than this module directly. It is //! kept separate purely for documentation purposes. pub(crate) mod array; #[doc(hidden)] pub mod array_comparison; pub(crate) mod expression_methods; pub mod extensions; #[doc(hidden)] pub mod helper_types; #[doc(hidden)] pub mod operators; mod date_and_time; /// PostgreSQL specific expression DSL methods. /// /// This module will be glob imported by /// [`diesel::dsl`](../../../dsl/index.html) when compiled with the `feature = /// "postgres"` flag. pub mod dsl { #[doc(inline)] pub use super::array_comparison::{all, any}; #[doc(inline)] pub use super::array::array; pub use super::extensions::*; }