This is an automated email from the ASF dual-hosted git repository. asoare pushed a commit to branch alexandrusoare/fix/transpile-undefined in repository https://gitbox.apache.org/repos/asf/superset.git
commit 7fc92973fe94707cb4de47e1d517fcbae8a3ab8e Author: alexandrusoare <[email protected]> AuthorDate: Mon Jan 19 14:38:24 2026 +0200 fix(transpile_query): added schema --- superset/charts/schemas.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/superset/charts/schemas.py b/superset/charts/schemas.py index 2ed6446cee..d8a874231f 100644 --- a/superset/charts/schemas.py +++ b/superset/charts/schemas.py @@ -1029,6 +1029,14 @@ class ChartDataExtrasSchema(Schema): }, allow_none=True, ) + transpile_to_dialect = fields.Boolean( + metadata={ + "description": "If true, WHERE/HAVING clauses will be transpiled to the " + "target database dialect using SQLGlot." + }, + load_default=False, + allow_none=True, + ) class AnnotationLayerSchema(Schema):
