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

remove enable_parquet_filetype param #1516

Merged
merged 2 commits into from
Apr 18, 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
5 changes: 0 additions & 5 deletions test/integ/test_put_get_medium.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,6 @@ def run(cnx, sql):
run(cnx, "drop table if exists {name}")


@pytest.mark.skipif(
not CONNECTION_PARAMETERS_ADMIN, reason="Snowflake admin account is not accessible."
)
@pytest.mark.parametrize(
"from_path", [True, pytest.param(False, marks=pytest.mark.skipolddriver)]
)
Expand All @@ -255,7 +252,6 @@ def run(cnx, sql):
return cnx.cursor().execute(sql).fetchall()

with conn_cnx() as cnx:
run(cnx, "alter session set enable_parquet_filetype=true")
run(
cnx,
"""
Expand All @@ -281,7 +277,6 @@ def run(cnx, sql):
assert rec[1] == "LOADED"

run(cnx, "drop table if exists {name}")
run(cnx, "alter session unset enable_parquet_filetype")


@pytest.mark.parametrize(
Expand Down