Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-964034 Enable skipped multistmt tests for stored proc #1133

Merged
merged 1 commit into from
Nov 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions tests/integ/scala/test_async_job_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,6 @@ def test_async_copy_into_location(session):
Utils.check_answer(res, df)


@pytest.mark.skipif(
IS_IN_STORED_PROC,
reason="TODO(SNOW-933567): result_scan for child job of multistmt is not supported",
)
@pytest.mark.skipif(IS_IN_STORED_PROC_LOCALFS, reason="Requires stage access")
@pytest.mark.skipif(not is_pandas_available, reason="to_pandas requires pandas")
def test_multiple_queries(session, resources_path):
Expand Down Expand Up @@ -362,10 +358,6 @@ def test_async_is_running_and_cancel(session):
assert async_job2.is_done()


@pytest.mark.skipif(
IS_IN_STORED_PROC,
reason="TODO(SNOW-933569): large result in multi-stmt is not supported in stored proc",
)
@pytest.mark.skipif(IS_IN_STORED_PROC_LOCALFS, reason="Requires large result")
def test_async_place_holder(session):
exp = session.sql("show functions").where("1=1").collect()
Expand Down
Loading