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 sample;
9pub mod schema;
10pub mod shard;
11pub mod splitter;
12pub mod writer;