Skip to content

Commit f24ad30

Browse files
committed
MariaDB 11.6 support
This commit marks MariaDB 11.6 as a supported DB flavor, now that its GA release occurred on 21 Nov 2024. This is a rolling (short term support) MariaDB server release. This is just a small bookkeeping commit. No functionality changes were necessary for MariaDB 11.6 support in Skeema, as all integration tests already pass as-is. Two notes for users: * MariaDB 11.6 changes the server default character set to utf8mb4. This default change typically does not directly affect Skeema's management of existing databases. Each schema normally has its own default set in a .skeema file using option default-character-set, which overrides the server- level default. * MariaDB 11.6 introduces a new authentication plugin called PARSEC, which is not supported yet by Skeema. This will require waiting for support in the Golang database driver.
1 parent 9559cc7 commit f24ad30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/tengo/flavor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type Version [3]uint16
1717
// numbers; corresponding logic handles this appropriately.
1818
var (
1919
LatestMySQLVersion = Version{9, 1}
20-
LatestMariaDBVersion = Version{11, 5}
20+
LatestMariaDBVersion = Version{11, 6}
2121
)
2222

2323
// Variables representing the oldest major.minor releases of MySQL and MariaDB

0 commit comments

Comments
 (0)