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 convert;
6pub mod merger;
7pub mod parser;
8pub mod progress;
9pub mod sample;
10pub mod schema;
11pub mod shard;
12pub mod splitter;
13pub mod validate;
14pub mod writer;