queryscript 0.1.4

Queryscript is a SQL-based language that allows you to use higher order abstractions like variables, functions, and modules alongside SQL queries.
pub mod context;
pub mod error;
pub mod functions;
mod normalize;
pub mod runtime;
pub mod sql;

pub mod duckdb;

#[cfg(feature = "clickhouse")]
pub mod clickhouse;

// NOTE: Datafusion is no longer in the repo, so this is technically dead code.
// pub mod datafusion;

pub use crate::runtime::runtime::*;
pub use context::{Context, ContextPool};
pub use error::{Result, RuntimeError};
pub use sql::*;