From a2eb4d966380c5d8ebcf5250f8fb69218aa1f8c1 Mon Sep 17 00:00:00 2001 From: sunakan Date: Fri, 30 Jan 2026 15:48:07 +0900 Subject: [PATCH] Add charset option to RDS MySQL datasource --- redash/query_runner/mysql.py | 1 + 1 file changed, 1 insertion(+) diff --git a/redash/query_runner/mysql.py b/redash/query_runner/mysql.py index 6a6fa8b189..56bfccbf0a 100644 --- a/redash/query_runner/mysql.py +++ b/redash/query_runner/mysql.py @@ -320,6 +320,7 @@ def configuration_schema(cls): "db": {"type": "string", "title": "Database name"}, "port": {"type": "number", "default": 3306}, "use_ssl": {"type": "boolean", "title": "Use SSL"}, + "charset": {"type": "string", "default": "utf8mb4"}, }, "order": ["host", "port", "user", "passwd", "db"], "required": ["db", "user", "passwd", "host"],