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
In query MATCH (v0:player),(v1:team) RETURN v0,v1 LIMIT 100, we could push Limit over BiCartesianProduct to let it start from ScanVertices.
For query like MATCH (v0:player)-[:like]->(v2), (v2)-[:serve]->(v1:team) RETURN v0,v1 LIMIT 100, we can't push Limit over BiInnerJoin, so can't do this.
Contents
Related work
The text was updated successfully, but these errors were encountered:
Introduction
In query
MATCH (v0:player),(v1:team) RETURN v0,v1 LIMIT 100
, we could pushLimit
overBiCartesianProduct
to let it start from ScanVertices.For query like
MATCH (v0:player)-[:like]->(v2), (v2)-[:serve]->(v1:team) RETURN v0,v1 LIMIT 100
, we can't pushLimit
overBiInnerJoin
, so can't do this.Contents
Related work
The text was updated successfully, but these errors were encountered: