1
2
3
4
5
6
7
8
9
10
11
12
//! Polars SQL
//! This crate provides a SQL interface for Polars DataFrames
#![deny(missing_docs)]
mod context;
pub mod function_registry;
mod functions;
pub mod keywords;
mod sql_expr;
mod table_functions;

pub use context::SQLContext;
pub use sql_expr::sql_expr;