use of org.apache.drill.exec.store.plan.rel.PluginJoinRel in project drill by apache.
the class PluginJoinRule method convert.
@Override
public RelNode convert(RelNode rel) {
Join join = (Join) rel;
RelTraitSet traits = join.getTraitSet().replace(getOutConvention());
return new PluginJoinRel(join.getCluster(), traits, convert(join.getLeft(), traits), convert(join.getRight(), traits), join.getCondition(), join.getJoinType());
}
Aggregations