From 6391b91c9aaa9d948049d1932ae24efeb170e129 Mon Sep 17 00:00:00 2001 From: Jose Luis Salas Date: Mon, 1 Jan 2024 13:32:25 +0700 Subject: [PATCH] Add clients and servers support and versioning --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ffc229..33f98fa 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,24 @@ [![Build Status](https://github.com/josacar/triki/workflows/Crystal%20CI/badge.svg)](https://github.com/josacar/triki/actions) -You want to develop against real production data, but you don't want to violate your users' privacy. Enter Triki: standalone Crystal code for the selective rewriting of SQL dumps in order to protect user privacy. It supports MySQL, Postgres, and SQL Server. +You want to develop against real production data, but you don't want to violate your users' privacy. Enter Triki: standalone Crystal code for the selective rewriting of SQL dumps in order to protect user privacy. + + +# Supported databases and versions + +## Servers + +- MySQL +- Postgres +- SQL Server + +## Clients + +- `pg_dump` ( Postgresql ) up to 15.x +- `mysqldump` ( MySQL ) up to 8.2 +- `mysqldump` ( MariaDB ) aka `mariadb-dump` ( since v0.3.0 ) up to 10.11 + +**Note**: Clients may break current SQL dump parsing as by now there is no proper integration testing in CI with all combinations of servers and clients versions, above versions have been partially manually tested. # Install