[minor](typo) Fix typo (#14903)

This commit is contained in:
Gabriel
2022-12-08 10:50:45 +08:00
committed by GitHub
parent 27c8147a2b
commit e62cc2ce76
8 changed files with 11 additions and 11 deletions

View File

@ -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();

View File

@ -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

View File

@ -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);
}

View File

@ -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();
}
/**

View File

@ -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

View File

@ -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

View File

@ -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();
}
}

View File

@ -193,7 +193,7 @@ public class StreamLoadPlanner {
scanNode.init(analyzer);
scanNode.finalize(analyzer);
if (Config.enable_vectorized_load) {
scanNode.convertToVectoriezd();
scanNode.convertToVectorized();
}
descTable.computeStatAndMemLayout();