Skip to content

Commit 3764f3c

Browse files
committed
Prevent errors for outbound shares with organization listings
1 parent c93b9e7 commit 3764f3c

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [0.55.1] - 2025-07-23
4+
5+
- Prevented errors for outbound shares with organization listings.
6+
37
## [0.55.0] - 2025-06-26
48

59
- Reworked `DYNAMIC_TABLE` to use `SHOW AS RESOURCE DYNAMIC TABLES` command.

snowddl/resolver/outbound_share.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ def compare_accounts(self, bp: OutboundShareBlueprint, check_existing=False):
126126

127127
if row:
128128
for r in json_loads(row["DETAILS"]):
129+
if "TARGETED WITHIN ORGANIZATION" in r["account_name"]:
130+
continue
131+
129132
existing_accounts.append(AccountIdent(*r["account_name"].split(".", 2)))
130133

131134
for account in bp.accounts:

snowddl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.55.0"
1+
__version__ = "0.55.1"

0 commit comments

Comments
 (0)