[TLP](step-1) Remove incubator prefix (#10230)

Remove some `incubator-` prefix in source code.
The document is not modified, will be done in next PR.
This commit is contained in:
Mingyu Chen
2022-06-19 19:34:52 +08:00
committed by GitHub
parent e09066c7ee
commit 67f341f44e
30 changed files with 91 additions and 104 deletions

View File

@ -86,7 +86,7 @@ import java.util.concurrent.TimeUnit;
/**
* Version 2 of RollupJob.
* This is for replacing the old RollupJob
* https://github.com/apache/incubator-doris/issues/1429
* https://github.com/apache/doris/issues/1429
*/
public class RollupJobV2 extends AlterJobV2 implements GsonPostProcessable {
private static final Logger LOG = LogManager.getLogger(RollupJobV2.class);

View File

@ -80,7 +80,7 @@ import java.util.concurrent.TimeUnit;
/*
* Version 2 of SchemaChangeJob.
* This is for replacing the old SchemaChangeJob
* https://github.com/apache/incubator-doris/issues/1429
* https://github.com/apache/doris/issues/1429
*/
public class SchemaChangeJobV2 extends AlterJobV2 {
private static final Logger LOG = LogManager.getLogger(SchemaChangeJobV2.class);

View File

@ -534,7 +534,7 @@ public abstract class QueryStmt extends StatementBase {
// "left join (select siteid, citycode from tmp) b on a.siteid = b.siteid;";
// tmp in child stmt "(select siteid, citycode from tmp)" do not contain with_Clause
// so need to check is view name by parentViewNameSet.
// issue link: https://github.com/apache/incubator-doris/issues/4598
// issue link: https://github.com/apache/doris/issues/4598
public abstract void getTables(Analyzer analyzer, Map<Long, Table> tables, Set<String> parentViewNameSet)
throws AnalysisException;

View File

@ -1207,7 +1207,7 @@ public class TabletSchedCtx implements Comparable<TabletSchedCtx> {
public void resetReplicaState() {
if (tablet != null) {
for (Replica replica : tablet.getReplicas()) {
// To address issue: https://github.com/apache/incubator-doris/issues/9422
// To address issue: https://github.com/apache/doris/issues/9422
// the DECOMMISSION state is set in TabletScheduler and not persist to meta.
// So it is reasonable to reset this state if we failed to scheduler this tablet.
// That is, if the TabletScheduler cannot process the tablet, then it should reset

View File

@ -39,10 +39,9 @@ public abstract class AbstractTreeNode<NODE_TYPE extends TreeNode<NODE_TYPE>>
protected final NodeType type;
protected final List<NODE_TYPE> children;
// TODO: Maybe we should use a GroupPlan to avoid TreeNode hold the GroupExpression.
// https://github.com/apache/incubator-doris/pull/9807#discussion_r884829067
// https://github.com/apache/doris/pull/9807#discussion_r884829067
protected final Optional<GroupExpression> groupExpression;
public AbstractTreeNode(NodeType type, NODE_TYPE... children) {
this(type, Optional.empty(), children);
}

View File

@ -82,7 +82,7 @@ import java.util.stream.Collectors;
/**
* Broker scan node
*
* Since https://github.com/apache/incubator-doris/pull/5686, Doris can read data from HDFS without broker by
* Since https://github.com/apache/doris/pull/5686, Doris can read data from HDFS without broker by
* broker scan node.
* Broker scan node is more likely a file scan node for now.
* With this feature, we can extend BrokerScanNode to query external table which data is stored in HDFS, such as