Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,9 @@ CREATE QUERY circleDetection (vertex<account> srcId, int stepLowLimit = 3, int s
tgt.@edgeTupleList = tgt.@newEdgeTupleList,
tgt.@receiveNewPath = true,
[email protected]()
END
END,
//clean up to reduce memory footprint
[email protected]()
HAVING tgt.@receiveNewPath == true
;

Expand Down Expand Up @@ -302,7 +304,9 @@ CREATE QUERY circleDetection (vertex<account> srcId, int stepLowLimit = 3, int s
END,
tgt.@receiveNewPath = true,
[email protected]()
END
END,
//clean up to reduce memory footprint
[email protected]()
HAVING tgt.@receiveNewPath == true and tgt != srcId
;

Expand Down