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

Add missing copy_options and file_options for snowflake native transfers #1707

Merged
merged 1 commit into from
Feb 3, 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
Original file line number Diff line number Diff line change
Expand Up @@ -1390,7 +1390,11 @@ def test_load_file_snowflake_azure_native_path(sample_dag, database_table_fixtur
input_file=File(path),
output_table=test_table,
load_options=[
SnowflakeLoadOptions(storage_integration="AZURE_INT_PYTHON_SDK"),
SnowflakeLoadOptions(
storage_integration="AZURE_INT_PYTHON_SDK",
copy_options={"ON_ERROR": "CONTINUE"},
file_options={"TYPE": "CSV", "TRIM_SPACE": True},
),
WASBLocationLoadOptions(storage_account="astrosdk"),
],
enable_native_fallback=False,
Expand Down