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/11 16:09:18 UTC

[superset] branch db-diagnostics updated: Small fixes

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


The following commit(s) were added to refs/heads/db-diagnostics by this push:
     new 315f90693b Small fixes
315f90693b is described below

commit 315f90693b2d654307734ff65671d2f96c5f6dc3
Author: Beto Dealmeida <ro...@dealmeida.net>
AuthorDate: Fri Aug 11 09:09:07 2023 -0700

    Small fixes
---
 superset/cli/test_db.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/superset/cli/test_db.py b/superset/cli/test_db.py
index 948177093a..dc8787c723 100644
--- a/superset/cli/test_db.py
+++ b/superset/cli/test_db.py
@@ -55,7 +55,7 @@ from superset.db_engine_specs.lib import (
 metadata_obj = MetaData()
 
 user = Table(
-    "user",
+    "tmp_superset_test_table_user",
     metadata_obj,
     Column("user_id", Integer, primary_key=True),
     Column("user_name", String(16), nullable=False),
@@ -64,7 +64,7 @@ user = Table(
 )
 
 user_prefs = Table(
-    "user_prefs",
+    "tmp_superset_test_table_user_prefs",
     metadata_obj,
     Column("pref_id", Integer, primary_key=True),
     Column("user_id", Integer, ForeignKey("user.user_id"), nullable=False),
@@ -142,7 +142,7 @@ def test_datetime(console: Console, engine: Engine) -> None:
 )
 def test_db(sqlalchemy_uri: str, raw_connect_args: str | None = None) -> None:
     """
-    Run a series of tests against an analytics database.
+    Run a series of tests against an analytical database.
 
     This command tests: