From 6073e56e3fc7e3b567498af5f9b9d02f167ec818 Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 7 Jan 2026 12:49:39 +0100 Subject: [PATCH] CI: Fixing dynamic mysql syntax --- .github/workflows/mysql_settings.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mysql_settings.py b/.github/workflows/mysql_settings.py index a0e8ebffa3..9fb4213a33 100644 --- a/.github/workflows/mysql_settings.py +++ b/.github/workflows/mysql_settings.py @@ -53,8 +53,7 @@ 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" ), }, "TEST": { @@ -63,8 +62,7 @@ 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" ), }, },