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:24:58 UTC

[superset] 01/01: 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

commit b2a81296ba6c405c3f1d5cc4ccec67916355b025
Author: hughhhh <hu...@gmail.com>
AuthorDate: Thu Jan 19 22:24:22 2023 +0200

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

diff --git a/superset/models/sql_lab.py b/superset/models/sql_lab.py
index babea35baf..5417dec985 100644
--- a/superset/models/sql_lab.py
+++ b/superset/models/sql_lab.py
@@ -244,6 +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
         }
 
     def raise_for_access(self) -> None: