Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/dbiir/pard into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
fukien committed Jan 16, 2018
2 parents d4722d3 + d5e3e17 commit 22d9076
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,10 @@ else if ((rightTable.getTable().equals(joinTableName.getValue()) && leftTable.ge
List<Column> clist = new ArrayList<Column>();
for (Column c : proj.getColumns()) {
Column col = new Column(c);
if (dataTableName.getValue().equals(col.getTableName())) {
col.setTableName(tmpTableName);
}
//设置为实际表的名字 但是因为别名的存在 所以目前不需要
//if (dataTableName.getValue().equals(col.getTableName())) {
// col.setTableName(tmpTableName);
//}
clist.add(col);
}
PlanNode output = new OutputNode();
Expand Down

0 comments on commit 22d9076

Please sign in to comment.