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 91b7f7f commit 7a5ae13Copy full SHA for 7a5ae13
tests/e2e/test_driver.py
@@ -935,19 +935,8 @@ def test_decimal_not_returned_as_strings_arrow(self):
935
assert pyarrow.types.is_decimal(decimal_type)
936
937
@skipUnless(pysql_supports_arrow(), "arrow test needs arrow support")
938
- @pytest.mark.parametrize(
939
- "extra_params",
940
- [
941
- {},
942
- {
943
- "use_sea": True,
944
- "use_cloud_fetch": False,
945
- "enable_query_result_lz4_compression": False,
946
- },
947
- ],
948
- )
949
- def test_catalogs_returns_arrow_table(self, extra_params):
950
- with self.cursor(extra_params) as cursor:
+ def test_catalogs_returns_arrow_table(self):
+ with self.cursor() as cursor:
951
cursor.catalogs()
952
results = cursor.fetchall_arrow()
953
assert isinstance(results, pyarrow.Table)
0 commit comments