This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 5.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit d611c25f2a05e3bb0d01000aeda787a211d03238 Author: Yuri <[email protected]> AuthorDate: Tue Feb 25 12:29:25 2025 -0800 fix(pinot): revert join and subquery flags (#32382) (cherry picked from commit 822d72c57d425c2683fec4fd0fe888f5d6fd6420) --- superset/db_engine_specs/pinot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/superset/db_engine_specs/pinot.py b/superset/db_engine_specs/pinot.py index 54fa72c296..5d6190db12 100644 --- a/superset/db_engine_specs/pinot.py +++ b/superset/db_engine_specs/pinot.py @@ -26,6 +26,8 @@ class PinotEngineSpec(BaseEngineSpec): engine = "pinot" engine_name = "Apache Pinot" + allows_subqueries = False + allows_joins = False allows_alias_in_select = False allows_alias_in_orderby = False
