[project-node]add projection thrift (#11309)

This commit is contained in:
morrySnow
2022-07-29 14:15:06 +08:00
committed by GitHub
parent e40c68e913
commit 8edbe39de8
2 changed files with 6 additions and 0 deletions

View File

@ -1056,10 +1056,12 @@ public class HashJoinNode extends PlanNode {
if (vSrcToOutputSMap != null) {
for (int i = 0; i < vSrcToOutputSMap.size(); i++) {
msg.hash_join_node.addToSrcExprList(vSrcToOutputSMap.getLhs().get(i).treeToThrift());
msg.addToProjections(vSrcToOutputSMap.getLhs().get(i).treeToThrift());
}
}
if (vOutputTupleDesc != null) {
msg.hash_join_node.setVoutputTupleId(vOutputTupleDesc.getId().asInt());
msg.setOutputTupleId(vOutputTupleDesc.getId().asInt());
}
if (vIntermediateTupleDescList != null) {
for (TupleDescriptor tupleDescriptor : vIntermediateTupleDescList) {