You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by be...@apache.org on 2023/08/08 00:37:42 UTC

[superset] 01/02: More docs

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

beto pushed a commit to branch db-diagnostics
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 1022588d9afd1ee25de66929c8e8719da67a1531
Author: Beto Dealmeida <ro...@dealmeida.net>
AuthorDate: Thu Jul 27 18:09:48 2023 -0700

    More docs
---
 superset/cli/test_db.py            | 2 +-
 superset/db_engine_specs/README.md | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/superset/cli/test_db.py b/superset/cli/test_db.py
index e9f8414ccd..1b968384ec 100644
--- a/superset/cli/test_db.py
+++ b/superset/cli/test_db.py
@@ -40,7 +40,7 @@ from sqlalchemy import (
 from sqlalchemy.engine import Engine
 from sqlalchemy.exc import NoSuchModuleError
 
-from superset.database.utils import make_url_safe
+from superset.databases.utils import make_url_safe
 from superset.db_engine_specs import load_engine_specs
 from superset.db_engine_specs.base import BaseEngineSpec
 from superset.db_engine_specs.lib import (
diff --git a/superset/db_engine_specs/README.md b/superset/db_engine_specs/README.md
index 16503ee07c..577c8afd88 100644
--- a/superset/db_engine_specs/README.md
+++ b/superset/db_engine_specs/README.md
@@ -320,3 +320,5 @@ FROM some_table
 SQLAlchemy recommends escaping colons to prevent them from being interpreted as bindings to parameters. Because of this, when building queries from virtual datasets Superset will escape all colons with `\:`.
 
 This works for most databases except Athena. The `allows_escaped_colons` attribute specifies if the database supports the escape colon.
+
+## Basic features