You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ty to format some TSQL containing IF and THROW, you get this wrong result with unwanted indents
IF @persistence_name_suffix IS NULL THROW 51001
, '@persistence_name_suffix is null'
, 1;
IF @source_RepoObject_guid IS NULLAND @persistence_RepoObject_guid IS NULL THROW 51002
, '@source_RepoObject_guid is null and @persistence_RepoObject_guid is null'
, 1;
IF NOT @persistence_RepoObject_guid IS NULLAND @source_RepoObject_guid IS NULLBEGINSELECT1
END
Ty to format some TSQL containing IF and THROW, you get this wrong result with unwanted indents
this is the documentation for THROW
https://docs.microsoft.com/de-de/sql/t-sql/language-elements/throw-transact-sql?view=sql-server-ver15
A line break before THROW would be fine
The text was updated successfully, but these errors were encountered: