mod case;
mod condition;
mod delete;
mod insert;
mod on_conflict;
mod ordered;
mod returning;
mod select;
mod traits;
mod update;
mod window;
mod with;
pub use case::*;
pub use condition::*;
pub use delete::*;
pub use insert::*;
pub use on_conflict::*;
pub use ordered::*;
pub use returning::*;
pub use select::*;
pub use traits::*;
pub use update::*;
pub use window::*;
pub use with::*;
#[derive(Debug, Clone)]
pub struct Query;
#[derive(Debug, Clone)]
pub enum QueryStatement {
Select(SelectStatement),
Insert(InsertStatement),
Update(UpdateStatement),
Delete(DeleteStatement),
}
#[derive(Debug, Clone, PartialEq)]
pub enum SubQueryStatement {
SelectStatement(SelectStatement),
InsertStatement(InsertStatement),
UpdateStatement(UpdateStatement),
DeleteStatement(DeleteStatement),
WithStatement(WithQuery),
}
impl Query {
pub fn select() -> SelectStatement {
SelectStatement::new()
}
pub fn insert() -> InsertStatement {
InsertStatement::new()
}
pub fn update() -> UpdateStatement {
UpdateStatement::new()
}
pub fn delete() -> DeleteStatement {
DeleteStatement::new()
}
pub fn with() -> WithClause {
WithClause::new()
}
pub fn returning() -> Returning {
Returning::new()
}
}