This is an automated email from the ASF dual-hosted git repository. beto pushed a commit to branch semantic-layer-feature in repository https://gitbox.apache.org/repos/asf/superset.git
commit 552c685a6b41548dc6423eaf5aa4c3f9f6bd4998 Author: Beto Dealmeida <[email protected]> AuthorDate: Mon Feb 9 13:55:34 2026 -0500 Fix models --- superset/semantic_layers/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset/semantic_layers/models.py b/superset/semantic_layers/models.py index ede9f45427b..afdbfbd4fd5 100644 --- a/superset/semantic_layers/models.py +++ b/superset/semantic_layers/models.py @@ -303,9 +303,9 @@ class SemanticView(AuditMixinNullable, Model): get_column_type(dimension.type) for dimension in self.implementation.get_dimensions() ], - "column_names": { + "column_names": [ dimension.name for dimension in self.implementation.get_dimensions() - }, + ], # rare "column_formats": {}, "datasource_name": self.name,
