clickhouse 0.15.0

Official Rust client for ClickHouse DB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # UI failure tests
//!
//! These tests are designed to ensure that the `#[derive(Row)]` macro
//! produces expected errors when used incorrectly. Test cases must be
//! added to the `tests/ui/` directory (use existing ones as an example).
//!
//! Run with `TRYBUILD=overwrite` to update snapshots (*.stderr files).

#[test]
fn ui() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/ui/*.rs");
}