arina-ielchiieva commented on a change in pull request #1365: DRILL-6575: Add
store.hive.conf.properties option to allow set Hive properties at session level
URL: https://github.com/apache/drill/pull/1365#discussion_r200814445
##########
File path:
exec/java-exec/src/main/java/org/apache/drill/exec/opt/BasicOptimizer.java
##########
@@ -180,16 +172,16 @@ public PhysicalOperator visitLimit(final
org.apache.drill.common.logical.data.Li
@Override
public PhysicalOperator visitJoin(final Join join, final Object value)
throws OptimizerException {
PhysicalOperator leftOp = join.getLeft().accept(this, value);
- final List<Ordering> leftOrderDefs = Lists.newArrayList();
- for(JoinCondition jc : join.getConditions()){
+ final List<Ordering> leftOrderDefs = new ArrayList<>();
+ for(JoinCondition jc : join.getConditions()) {
Review comment:
Done.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services