Skip to content

Commit 9f0f969

Browse files
remove SEA running on metadata queries (known failures
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 734321a commit 9f0f969

File tree

1 file changed

+0
-44
lines changed

1 file changed

+0
-44
lines changed

tests/e2e/test_driver.py

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -352,17 +352,6 @@ def test_create_table_will_return_empty_result_set(self, extra_params):
352352
finally:
353353
cursor.execute("DROP TABLE IF EXISTS {}".format(table_name))
354354

355-
@pytest.mark.parametrize(
356-
"extra_params",
357-
[
358-
{},
359-
{
360-
"use_sea": True,
361-
"use_cloud_fetch": False,
362-
"enable_query_result_lz4_compression": False,
363-
},
364-
],
365-
)
366355
def test_get_tables(self, extra_params):
367356
with self.cursor(extra_params) as cursor:
368357
table_name = "table_{uuid}".format(uuid=str(uuid4()).replace("-", "_"))
@@ -409,17 +398,6 @@ def test_get_tables(self, extra_params):
409398
for table in table_names:
410399
cursor.execute("DROP TABLE IF EXISTS {}".format(table))
411400

412-
@pytest.mark.parametrize(
413-
"extra_params",
414-
[
415-
{},
416-
{
417-
"use_sea": True,
418-
"use_cloud_fetch": False,
419-
"enable_query_result_lz4_compression": False,
420-
},
421-
],
422-
)
423401
def test_get_columns(self, extra_params):
424402
with self.cursor(extra_params) as cursor:
425403
table_name = "table_{uuid}".format(uuid=str(uuid4()).replace("-", "_"))
@@ -543,17 +521,6 @@ def test_escape_single_quotes(self, extra_params):
543521
rows = cursor.fetchall()
544522
assert rows[0]["col_1"] == "you're"
545523

546-
@pytest.mark.parametrize(
547-
"extra_params",
548-
[
549-
{},
550-
{
551-
"use_sea": True,
552-
"use_cloud_fetch": False,
553-
"enable_query_result_lz4_compression": False,
554-
},
555-
],
556-
)
557524
def test_get_schemas(self, extra_params):
558525
with self.cursor(extra_params) as cursor:
559526
database_name = "db_{uuid}".format(uuid=str(uuid4()).replace("-", "_"))
@@ -572,17 +539,6 @@ def test_get_schemas(self, extra_params):
572539
finally:
573540
cursor.execute("DROP DATABASE IF EXISTS {}".format(database_name))
574541

575-
@pytest.mark.parametrize(
576-
"extra_params",
577-
[
578-
{},
579-
{
580-
"use_sea": True,
581-
"use_cloud_fetch": False,
582-
"enable_query_result_lz4_compression": False,
583-
},
584-
],
585-
)
586542
def test_get_catalogs(self, extra_params):
587543
with self.cursor(extra_params) as cursor:
588544
cursor.catalogs()

0 commit comments

Comments
 (0)