fastmodel-transform/fastmodel-transform-api/src/main/java/com/aliyun/fastmodel/transform/api/extension/tree/partition/sub/SubRangePartition.java [55:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public List<? extends Node> getChildren() {
        Builder<Node> nodes = ImmutableList.<Node>builder();
        if (expression != null) {
            nodes.add(expression);
        }
        if (columnList != null) {
            nodes.addAll(columnList);
        }
        if (singleRangePartitionList != null) {
            nodes.addAll(singleRangePartitionList);
        }
        return nodes.build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



fastmodel-transform/fastmodel-transform-oceanbase/src/main/java/com/aliyun/fastmodel/transform/oceanbase/parser/tree/partition/desc/SubRangePartition.java [39:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public List<? extends Node> getChildren() {
        Builder<Node> nodes = ImmutableList.<Node>builder();
        if (expression != null) {
            nodes.add(expression);
        }
        if (columnList != null) {
            nodes.addAll(columnList);
        }
        if (singleRangePartitionList != null) {
            nodes.addAll(singleRangePartitionList);
        }
        return nodes.build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



