fastmodel-transform/fastmodel-transform-api/src/main/java/com/aliyun/fastmodel/transform/api/extension/tree/partition/sub/element/RangePartitionElement.java [55:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public List<? extends Node> getChildren() {
        Builder<Node> immutableList = new Builder();
        if (singleRangePartition != null) {
            immutableList.add(singleRangePartition);
        }
        if (subPartitionList != null) {
            immutableList.add(subPartitionList);
        }
        if (idCount != null) {
            immutableList.add(idCount);
        }
        return immutableList.build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



fastmodel-transform/fastmodel-transform-oceanbase/src/main/java/com/aliyun/fastmodel/transform/oceanbase/parser/tree/partition/desc/element/RangePartitionElement.java [35:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public List<? extends Node> getChildren() {
        Builder<Node> immutableList = new Builder();
        if (singleRangePartition != null) {
            immutableList.add(singleRangePartition);
        }
        if (subPartitionList != null) {
            immutableList.add(subPartitionList);
        }
        if (idCount != null) {
            immutableList.add(idCount);
        }
        return immutableList.build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



