We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dad0884 commit dcdd2c6Copy full SHA for dcdd2c6
1 file changed
snowflake_utils/models/table.py
@@ -368,6 +368,7 @@ def merge(
368
qualify: bool = False,
369
files: list[str] | None = None,
370
copy_grants: bool = True,
371
+ stage: str | None = None,
372
) -> None:
373
def copy_callable(table: Table, sync_tags: bool) -> None:
374
return table.copy_into(
@@ -378,6 +379,7 @@ def copy_callable(table: Table, sync_tags: bool) -> None:
378
379
sync_tags=sync_tags,
380
files=files,
381
copy_grants=copy_grants,
382
+ stage=stage,
383
)
384
385
return self._merge(copy_callable, primary_keys, replication_keys, qualify)
0 commit comments