You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2023/01/19 20:40:53 UTC

[superset] branch hxgh-fix-schema-ds updated: add schema to data

This is an automated email from the ASF dual-hosted git repository.

hugh pushed a commit to branch hxgh-fix-schema-ds
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/hxgh-fix-schema-ds by this push:
     new 31aa28ca14 add schema to data
31aa28ca14 is described below

commit 31aa28ca14dba0b75b294c4a0f40fad626048ac5
Author: hughhhh <hu...@gmail.com>
AuthorDate: Thu Jan 19 22:40:27 2023 +0200

    add schema to data
---
 superset/models/sql_lab.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset/models/sql_lab.py b/superset/models/sql_lab.py
index 5417dec985..2e5af7402f 100644
--- a/superset/models/sql_lab.py
+++ b/superset/models/sql_lab.py
@@ -244,7 +244,7 @@ class Query(
             "owners": self.owners_data,
             "database": {"id": self.database_id, "backend": self.database.backend},
             "order_by_choices": order_by_choices,
-            "schema": self.schema
+            "schema": self.schema,
         }
 
     def raise_for_access(self) -> None: