vantage-sql 0.4.8

Vantage extension for SQL databases (Postgres, MySQL, SQLite)
Documentation
pub mod alias;
pub mod case;
pub mod concat;
pub mod date_format;
pub mod fx;
pub mod identifier;
pub mod iif;
pub mod interval;
pub mod json_extract;
pub mod logical;
pub mod point;
pub mod select;
pub mod ternary;
pub mod union;

// Convenience re-exports
pub use alias::AliasExt;
pub use case::Case;
pub use concat::Concat;
pub use date_format::{DateFormat, date_format};
pub use fx::Fx;
pub use identifier::{Identifier, ident};
pub use iif::Iif;
pub use interval::Interval;
pub use logical::{and_, or_};
pub use ternary::ternary;