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
We just need the rule that changes algebra.Intersect to MyriaJoin. Shuffle is already properly introduced before the Intersect by the rule ShuffleBeforeSetop.
Example query
Edges = empty(a:int,b:int);
Left =select a as v from Edges;
Right =select b as v from Edges;
i = Intersect(Left,Right);
store(i, users);
The text was updated successfully, but these errors were encountered:
We just need the rule that changes
algebra.Intersect
toMyriaJoin
. Shuffle is already properly introduced before the Intersect by the ruleShuffleBeforeSetop
.Example query
The text was updated successfully, but these errors were encountered: