nebula icon indicating copy to clipboard operation
nebula copied to clipboard

Support column pruning in plan rewriter

Open yixinglu opened this issue 1 year ago • 1 comments

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 avatar Mar 28 '23 08:03 yixinglu

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;

yixinglu avatar Apr 10 '23 06:04 yixinglu