Skip to content

Commit

Permalink
Fix chernishev#5: mark fieldOrders of the right table in LJoinNode as…
Browse files Browse the repository at this point in the history
… CS_UNKNOWN
  • Loading branch information
yeputons committed Oct 23, 2017
1 parent c90f5fb commit 2996c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbmse/engine/interface/interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ LJoinNode::LJoinNode(std::unique_ptr<LAbstractNode> left_, std::unique_ptr<LAbst
if (std::find(r.begin(), r.end(), offset2) == r.end()) {
fieldNames.push_back(r);
fieldTypes.push_back(right->fieldTypes[i]);
fieldOrders.push_back(right->fieldOrders[i]);
fieldOrders.push_back(CS_UNKNOWN);

}

Expand Down

0 comments on commit 2996c57

Please sign in to comment.