sql-splitter 1.13.1

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
14
//! Real-world SQL dump verification tests.
//!
//! These tests download public SQL dumps and verify that sql-splitter can
//! correctly parse, split, convert, validate, redact, and generate ERDs from them.
//!
//! Run with: cargo test --test realworld -- --ignored
//!
//! Or run a specific test case:
//!   cargo test --test realworld mysql_classicmodels -- --ignored

#[path = "realworld_tests/mod.rs"]
mod realworld_tests;

pub use realworld_tests::*;