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
AS source (FlowType, FlowInstance, StoredId, EffectId, Status, Result, Exception)
68
+
ON {tablePrefix}_Effects.FlowType = source.FlowType AND {tablePrefix}_Effects.FlowInstance = source.FlowInstance AND {tablePrefix}_Effects.StoredId = source.StoredId
69
+
WHEN MATCHED THEN
70
+
UPDATE SET Status = source.Status, Result = source.Result, Exception = source.Exception
AS source (FlowType, FlowInstance, StoredId, EffectId, Status, Result, Exception)
93
-
ON {tablePrefix}_Effects.FlowType = source.FlowType AND {tablePrefix}_Effects.FlowInstance = source.FlowInstance AND {tablePrefix}_Effects.StoredId = source.StoredId
94
-
WHEN MATCHED THEN
95
-
UPDATE SET Status = source.Status, Result = source.Result, Exception = source.Exception
0 commit comments