Fixed recursion limit of 100 error that happened when inserting a transition in the 137th procedure of a large procedure set
This commit is contained in:
@@ -5545,7 +5545,7 @@ join itemz zz on pp.itemid = zz.itemid
|
||||
join items ii on ii.contentid = pp.contentid
|
||||
)
|
||||
select top 1 @ParentID = itemid from itemz
|
||||
where isfound = 1
|
||||
where isfound = 1 OPTION (MAXRECURSION 10000)
|
||||
RETURN @ParentID
|
||||
END
|
||||
GO
|
||||
|
Reference in New Issue
Block a user