deltalake 0.3.0

Native Delta Lake implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate deltalake;

use std::{env, matches};

#[tokio::test]
async fn read_empty_folder() {
    let dir = env::temp_dir();
    let result = deltalake::open_table(&dir.into_os_string().into_string().unwrap()).await;

    assert!(matches!(
        result.unwrap_err(),
        deltalake::DeltaTableError::NotATable,
    ));
}