[project-node]add projection thrift (#11309)
This commit is contained in:
@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user