optd-sqlplannertest 0.0.0

A Cascades optimizer framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::Path;

use anyhow::Result;

#[tokio::main]
async fn main() -> Result<()> {
    sqlplannertest::planner_test_apply(
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests"),
        || async { optd_sqlplannertest::DatafusionDb::new().await },
    )
    .await?;
    Ok(())
}