What database drivers and libraries do people use with MariaDB in Go? The page https://go.dev/wiki/SQLDrivers lists 3 MySQL drivers, but none for MariaDB. The SqlX seems to use the same drivers as database/sql, but it does mention MySQL explicitly in the docs but not MariaDB. The library GORM also mentions MySQL explicitly in the docs but not MariaDB.
Has anyone compared these drivers? Are there any known gaps in MariaDB compatibility? Is any of them more performant than the others? Are they able to take full advantage of MariaDB's performance features?