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
SELECTCOUNT(nodegroupid)
FROM
nodes
WHERE
graphid ='ee72fb1e-fa6c-11e9-b369-3af9d3b32b71';
-- Result: 13SELECTCOUNT(nodegroupid)
FROM
__get_nodegroup_tree_by_graph ('ee72fb1e-fa6c-11e9-b369-3af9d3b32b71');
-- Result: 9, expected 12 (seems okay to omit the top node)-- Next query shows what's missing: just the child nodesSELECT*FROM
nodes
WHERE
graphid = UUID('ee72fb1e-fa6c-11e9-b369-3af9d3b32b71')
AND alias NOT IN(
SELECT
alias FROM __get_nodegroup_tree_by_graph (UUID('ee72fb1e-fa6c-11e9-b369-3af9d3b32b71')));
The db functions
__get_nodegroup_tree
or__get_nodegroup_tree_by_graph
appear to miss child nodes, unless I'm misunderstanding how they work.With this setup:
Noticed while dev'ing #10798
The text was updated successfully, but these errors were encountered: