feophant 0.9.0

A SQL database server written in Rust and inspired by PostreSQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod common;

///This test will input random garbage as a sql error and should error out
#[tokio::test]
async fn garbage() -> Result<(), Box<dyn std::error::Error>> {
    let (request_shutdown, client) = common::_create_server_and_client().await?;
    let res = client.batch_execute("Lorem ipsum dolor sit amet").await;
    assert!(res.is_err());

    common::_request_shutdown(request_shutdown).await
}