sql-splitter 1.8.0

High-performance CLI tool for splitting large SQL dump files into individual table files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Allow dead code for items that are part of the public API but only used in tests
#![allow(dead_code)]

pub mod analyzer;
pub mod convert;
pub mod merger;
pub mod parser;
pub mod sample;
pub mod schema;
pub mod shard;
pub mod splitter;
pub mod validate;
pub mod writer;