From 2742515241e1705971aca77b4e07fa1015f600da Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 7 Jan 2026 12:35:07 +0100 Subject: [PATCH] CI: More testing to get mysql/psql CI tests to work --- .github/workflows/mysql_settings.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mysql_settings.py b/.github/workflows/mysql_settings.py index 8001649041..a0e8ebffa3 100644 --- a/.github/workflows/mysql_settings.py +++ b/.github/workflows/mysql_settings.py @@ -53,8 +53,8 @@ DATABASES = { # variables that don't require special privileges. "init_command": ( "SET collation_connection=utf8mb4_unicode_ci, " - "sql_mode='STRICT_TRANS_TABLES', innodb_strict_mode=1", - "innodb_default_row_format=DYNAMIC", + "sql_mode='STRICT_TRANS_TABLES', innodb_strict_mode=1, " + "innodb_default_row_format=DYNAMIC" ), }, "TEST": { @@ -63,8 +63,8 @@ DATABASES = { "charset": "utf8mb4", "init_command": ( "SET collation_connection=utf8mb4_unicode_ci, " - "sql_mode='STRICT_TRANS_TABLES', innodb_strict_mode=1", - "innodb_default_row_format=DYNAMIC", + "sql_mode='STRICT_TRANS_TABLES', innodb_strict_mode=1, " + "innodb_default_row_format=DYNAMIC" ), }, },