We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plan fragment could be applied this rule:
-----+--------------------+--------------+----------------+-------------------------------------------------------------------------------------------- | 27 | Project | 30 | | outputVar: [ | | | | | | { | | | | | | "colNames": [ | | | | | | "v2" | | | | | | ], | | | | | | "type": "DATASET", | | | | | | "name": "__Project_27" | | | | | | } | | | | | | ] | | | | | | inputVar: __Filter_26 | | | | | | columns: [ | | | | | | "$v2" | | | | | | ] | -----+--------------------+--------------+----------------+-------------------------------------------------------------------------------------------- | 30 | Filter | 24 | | outputVar: [ | | | | | | { | | | | | | "colNames": [ | | | | | | "v", | | | | | | "e", | | | | | | "v2", | | | | | | "__COL_0" | | | | | | ], | | | | | | "type": "DATASET", | | | | | | "name": "__Filter_26" | | | | | | } | | | | | | ] | | | | | | inputVar: __Project_24 | | | | | | condition: (($v2.age>30) AND !(hasSameEdgeInPath($-.__COL_0))) | -----+--------------------+--------------+----------------+-------------------------------------------------------------------------------------------- | 24 | Project | 23 | | outputVar: [ | | | | | | { | | | | | | "colNames": [ | | | | | | "v", | | | | | | "e", | | | | | | "v2", | | | | | | "__COL_0" | | | | | | ], | | | | | | "type": "DATASET", | | | | | | "name": "__Project_24" | | | | | | } | | | | | | ] | | | | | | inputVar: __InnerJoin_23 | | | | | | columns: [ | | | | | | "startNode($-._path_0) AS v", | | | | | | "relationships($-._path_0) AS e", | | | | | | "startNode($-._path_1) AS v2", | | | | | | "PathBuild[PathBuild[$-._path_0,$-._path_1]] AS __COL_0" | | | | | | ] | -----+--------------------+--------------+----------------+--------------------------------------------------------------------------------------------
The result set needs not the variables e and v, we can prune the columns in optimization stage and avoid useless evaluation at runtime.
e
v
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Plan fragment could be applied this rule:
The result set needs not the variables
e
andv
, we can prune the columns in optimization stage and avoid useless evaluation at runtime.The text was updated successfully, but these errors were encountered: