Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions requirements/development.txt
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,10 @@ dnspython==2.7.0
# email-validator
docker==7.0.0
# via apache-superset
duckdb==1.3.2
# via duckdb-engine
duckdb==0.10.3
# via
# apache-superset
# duckdb-engine
Comment on lines +184 to +187
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One of those issues caused by ci not running where it should be. By-catch

duckdb-engine==0.17.0
# via apache-superset
email-validator==2.2.0
Expand Down
4 changes: 3 additions & 1 deletion superset/db_engine_specs/doris.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ class DorisEngineSpec(MySQLEngineSpec):
)
encryption_parameters = {"ssl": "0"}
supports_dynamic_schema = True
supports_catalog = supports_dynamic_catalog = supports_cross_catalog_queries = True
supports_catalog = supports_dynamic_catalog = True
# while technically supported by Doris, this generates invalid table identifiers
supports_cross_catalog_queries = False

column_type_mappings = ( # type: ignore
(
Expand Down
Loading