drizzle-postgres 0.1.15

A type-safe SQL query builder for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! PostgreSQL-specific expressions.
//!
//! This module provides `PostgreSQL` dialect-specific SQL expressions and operators.
//! For standard SQL expressions, use `drizzle_core::expr`.

mod array_ops;
mod ilike;
mod json_ops;
mod regex;

pub use array_ops::*;
pub use ilike::*;
pub use json_ops::*;
pub use regex::*;