polars-sql 0.28.0

Lazy query engine for the Polars DataFrame library
Documentation
#![allow(unused)]

#[cfg(target_os = "linux")]
#[cfg(feature = "cli")]
use jemallocator::Jemalloc;

#[cfg(feature = "cli")]
mod cli;

#[global_allocator]
#[cfg(target_os = "linux")]
#[cfg(feature = "cli")]
static ALLOC: Jemalloc = Jemalloc;

fn main() -> std::io::Result<()> {
    #[cfg(feature = "cli")]
    return cli::run();

    Ok(())
}