We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d10756 commit 4e6ee34Copy full SHA for 4e6ee34
tests/e2e/test_driver.py
@@ -541,8 +541,15 @@ def test_get_schemas(self):
541
finally:
542
cursor.execute("DROP DATABASE IF EXISTS {}".format(database_name))
543
544
- def test_get_catalogs(self):
545
- with self.cursor({}) as cursor:
+ @pytest.mark.parametrize(
+ "backend_params",
546
+ [
547
+ {},
548
+ {"use_sea": True},
549
+ ],
550
+ )
551
+ def test_get_catalogs(self, backend_params):
552
+ with self.cursor(extra_params=backend_params) as cursor:
553
cursor.catalogs()
554
cursor.fetchall()
555
catalogs_desc = cursor.description
0 commit comments