fix(snowflake): Allow encrypted_extra field to be imported (#22357)

Co-authored-by: Alan Ning <aning@manifold.ai>
This commit is contained in:
Alan Ning
2022-12-08 14:27:30 -05:00
committed by GitHub
parent 3a442e09bf
commit d41cb66737

View File

@@ -163,7 +163,12 @@ class Database(
"allow_file_upload",
"extra",
]
extra_import_fields = ["password", "is_managed_externally", "external_url"]
extra_import_fields = [
"password",
"is_managed_externally",
"external_url",
"encrypted_extra",
]
export_children = ["tables"]
def __repr__(self) -> str: