sabiql 1.7.0

A fast, driver-less TUI for browsing and editing PostgreSQL databases
Documentation
1
2
3
4
5
6
7
8
9
use std::path::PathBuf;

pub trait ErLogWriter: Send + Sync {
    fn write_er_failure_log(
        &self,
        failed_tables: Vec<(String, String)>,
        cache_dir: PathBuf,
    ) -> std::io::Result<()>;
}