提交 a0021b99 authored 作者: Thomas Mueller's avatar Thomas Mueller

Old Oracle outer join syntax bugfix

上级 280c7a28
...@@ -469,7 +469,12 @@ public class TableFilter implements ColumnResolver { ...@@ -469,7 +469,12 @@ public class TableFilter implements ColumnResolver {
} }
} }
private void mapAndAddFilter(Expression on) throws SQLException { /**
* Map the columns and add the join condition.
*
* @param on the condition
*/
public void mapAndAddFilter(Expression on) throws SQLException {
on.mapColumns(this, 0); on.mapColumns(this, 0);
addFilterCondition(on, true); addFilterCondition(on, true);
on.createIndexConditions(session, this); on.createIndexConditions(session, this);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论