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
mod aggregate;
mod alter;
mod context;
mod evaluate;
mod execute;
mod fetch;
mod filter;
mod join;
mod limit;
mod select;
mod sort;
mod update;
mod validate;
pub use aggregate::AggregateError;
pub use alter::AlterError;
pub use evaluate::{evaluate_stateless, EvaluateError};
pub use execute::{ExecuteError, Payload};
pub use fetch::FetchError;
pub use select::SelectError;
pub use update::UpdateError;
pub use validate::ValidateError;
#[cfg(not(feature = "transaction"))]
pub use execute::execute;
#[cfg(feature = "transaction")]
pub use execute::execute_atomic as execute;
#[cfg(feature = "metadata")]
pub use execute::PayloadVariable;