[minor](typo) Fix typo (#14903)
This commit is contained in:
@ -161,7 +161,7 @@ public class LoadingTaskPlanner {
|
||||
scanNode.init(analyzer);
|
||||
scanNode.finalize(analyzer);
|
||||
if (Config.enable_vectorized_load) {
|
||||
scanNode.convertToVectoriezd();
|
||||
scanNode.convertToVectorized();
|
||||
}
|
||||
scanNodes.add(scanNode);
|
||||
descTable.computeStatAndMemLayout();
|
||||
|
||||
@ -88,7 +88,7 @@ public class UpdatePlanner extends OriginalPlanner {
|
||||
olapScanNode.init(analyzer);
|
||||
olapScanNode.finalize(analyzer);
|
||||
if (VectorizedUtil.isVectorized()) {
|
||||
olapScanNode.convertToVectoriezd();
|
||||
olapScanNode.convertToVectorized();
|
||||
}
|
||||
scanNodeList.add(olapScanNode);
|
||||
// 2. gen olap table sink
|
||||
|
||||
@ -147,7 +147,7 @@ public class PhysicalPlanTranslator extends DefaultPlanVisitor<PlanFragment, Pla
|
||||
physicalPlan.getOutput().stream().map(Slot::getExprId)
|
||||
.forEach(exprId -> outputExprs.add(context.findSlotRef(exprId)));
|
||||
rootFragment.setOutputExprs(outputExprs);
|
||||
rootFragment.getPlanRoot().convertToVectoriezd();
|
||||
rootFragment.getPlanRoot().convertToVectorized();
|
||||
for (PlanFragment fragment : context.getPlanFragments()) {
|
||||
fragment.finalize(null);
|
||||
}
|
||||
|
||||
@ -827,12 +827,12 @@ public class HashJoinNode extends JoinNodeBase {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void convertToVectoriezd() {
|
||||
public void convertToVectorized() {
|
||||
if (!otherJoinConjuncts.isEmpty()) {
|
||||
votherJoinConjunct = convertConjunctsToAndCompoundPredicate(otherJoinConjuncts);
|
||||
initCompoundPredicate(votherJoinConjunct);
|
||||
}
|
||||
super.convertToVectoriezd();
|
||||
super.convertToVectorized();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -156,12 +156,12 @@ public class NestedLoopJoinNode extends JoinNodeBase {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void convertToVectoriezd() {
|
||||
public void convertToVectorized() {
|
||||
if (!joinConjuncts.isEmpty()) {
|
||||
vJoinConjunct = convertConjunctsToAndCompoundPredicate(joinConjuncts);
|
||||
initCompoundPredicate(vJoinConjunct);
|
||||
}
|
||||
super.convertToVectoriezd();
|
||||
super.convertToVectorized();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@ -148,7 +148,7 @@ public class OriginalPlanner extends Planner {
|
||||
|
||||
// TODO change to vec should happen after distributed planner
|
||||
if (VectorizedUtil.isVectorized()) {
|
||||
singleNodePlan.convertToVectoriezd();
|
||||
singleNodePlan.convertToVectorized();
|
||||
}
|
||||
|
||||
if (analyzer.getContext() != null
|
||||
|
||||
@ -952,7 +952,7 @@ public abstract class PlanNode extends TreeNode<PlanNode> implements PlanStats {
|
||||
return getRuntimeFilterExplainString(isBuildNode, false);
|
||||
}
|
||||
|
||||
public void convertToVectoriezd() {
|
||||
public void convertToVectorized() {
|
||||
List<Expr> conjunctsExcludeBitmapFilter = Lists.newArrayList();
|
||||
for (Expr expr : conjuncts) {
|
||||
if (!(expr instanceof BitmapFilterPredicate)) {
|
||||
@ -970,7 +970,7 @@ public abstract class PlanNode extends TreeNode<PlanNode> implements PlanStats {
|
||||
}
|
||||
|
||||
for (PlanNode child : children) {
|
||||
child.convertToVectoriezd();
|
||||
child.convertToVectorized();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -193,7 +193,7 @@ public class StreamLoadPlanner {
|
||||
scanNode.init(analyzer);
|
||||
scanNode.finalize(analyzer);
|
||||
if (Config.enable_vectorized_load) {
|
||||
scanNode.convertToVectoriezd();
|
||||
scanNode.convertToVectorized();
|
||||
}
|
||||
descTable.computeStatAndMemLayout();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user