sql_splitter/lib.rs
1// Allow dead code for items that are part of the public API but only used in tests
2#![allow(dead_code)]
3
4pub mod analyzer;
5pub mod cmd;
6pub mod convert;
7pub mod differ;
8pub mod duckdb;
9pub mod graph;
10pub mod merger;
11pub mod parser;
12pub mod pk;
13pub mod progress;
14pub mod redactor;
15pub mod sample;
16pub mod schema;
17pub mod shard;
18pub mod splitter;
19pub mod validate;
20pub mod writer;