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 f76d740 commit 004bcceCopy full SHA for 004bcce
tests/e2e/test_driver.py
@@ -562,8 +562,17 @@ def test_get_schemas(self):
562
finally:
563
cursor.execute("DROP DATABASE IF EXISTS {}".format(database_name))
564
565
- def test_get_catalogs(self):
566
- with self.cursor({}) as cursor:
+ @pytest.mark.parametrize(
+ "extra_params",
567
+ [
568
+ {},
569
+ {
570
+ "use_sea": True,
571
+ },
572
+ ],
573
+ )
574
+ def test_get_catalogs(self, extra_params):
575
+ with self.cursor(extra_params) as cursor:
576
cursor.catalogs()
577
cursor.fetchall()
578
catalogs_desc = cursor.description
0 commit comments