From 366c91666b92f25c1301ce1a6ce680942e03e7ca Mon Sep 17 00:00:00 2001 From: Colin Ho Date: Fri, 23 Feb 2024 21:47:04 -0800 Subject: [PATCH] add text to query --- tests/integration/sql/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/sql/conftest.py b/tests/integration/sql/conftest.py index cadde8c2c8..de254ddd77 100644 --- a/tests/integration/sql/conftest.py +++ b/tests/integration/sql/conftest.py @@ -33,7 +33,7 @@ def test_items(): ) def check_database_connection(url) -> None: with sqlalchemy.create_engine(url).connect() as conn: - conn.execute(sqlalchemy.text("SELECT 1")) + conn.execute(sqlalchemy.text("SELECT * FROM tpch.sf1.nation")) @pytest.fixture(scope="session")