Skip to content
New issue

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

Support column pruning in plan rewriter #5448

Open
yixinglu opened this issue Mar 28, 2023 · 1 comment
Open

Support column pruning in plan rewriter #5448

yixinglu opened this issue Mar 28, 2023 · 1 comment
Labels
type/enhancement Type: make the code neat or more efficient

Comments

@yixinglu
Copy link
Contributor

refer: https://discuss.nebula-graph.com.cn/t/topic/12581/23

nebula should prune the unused columns in plan node before entering optimization stage.

@yixinglu yixinglu added the type/enhancement Type: make the code neat or more efficient label Mar 28, 2023
@yixinglu yixinglu changed the title Support column pruning in optimizer Support column pruning in plan rewriter Mar 28, 2023
@yixinglu
Copy link
Contributor Author

another test case:

match (v:player) 
where id(v)=='Tim Duncan' 
with v.player.name AS name 
match (v:player)-[]-(v2) 
where v.player.name IN name 
return v2;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/enhancement Type: make the code neat or more efficient
Projects
None yet
Development

No branches or pull requests

1 participant