Skip to content

Commit

Permalink
Update superset/db_engine_specs/doris.py
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro authored Jan 6, 2025
1 parent 56d2660 commit a11fea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/db_engine_specs/doris.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def adjust_engine_params(
# In Apache Doris, each catalog has an information_schema for BI tool
# compatibility. See: https://github.com/apache/doris/pull/28919
schema = schema or "information_schema"
database = ".".join([catalog, schema])
database = ".".join([catalog or "", schema])
uri = uri.set(database=database)
return uri, connect_args

Expand Down

0 comments on commit a11fea5

Please sign in to comment.