You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test: run _mysqlcommon unit tests in make + CI; note MariaDB binary requirement
go test ./... skips underscore-prefixed dirs, so internal/driver/_mysqlcommon
unit tests were silently excluded from make test and CI. Name _*-prefixed
packages explicitly so the arg-builder/version tests actually run. Also document
that the MariaDB driver requires the renamed mariadb-dump/mariadb binaries.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ A single binary that turns the painful, error-prone sprawl of `pg_dump` → `pg_
64
64
-**Database client tools** — siphon shells out to the native dump/restore tools; it does not embed a client. You only need the tools for the engines you actually use:
65
65
-**PostgreSQL** profiles need `pg_dump`, `pg_restore`, `psql`.
66
66
-**MySQL** profiles need `mysqldump`, `mysql`.
67
-
-**MariaDB** profiles need `mariadb-dump`, `mariadb`.
67
+
-**MariaDB** profiles need `mariadb-dump`, `mariadb` (the renamed binaries shipped by MariaDB 10.5+; older installs that only ship `mysqldump`/`mysql` are not yet supported).
0 commit comments