## Proposed changes bp #39696 Issue Number: close #39684 ```sql CREATE TABLE `test1` ( `id1` VARCHAR(255) NULL COMMENT 'id1', `id2` VARCHAR(255) NULL COMMENT 'id2', `event_time` VARCHAR(255) NULL COMMENT '事件时间', `event_date` VARCHAR(255) NULL COMMENT '事件日期', `event_ts` VARCHAR(256) NULL COMMENT '事件发生时间戳(毫秒)', `dt` VARCHAR(255) NOT NULL COMMENT '日期分区', `hr` VARCHAR(255) NOT NULL COMMENT '小时分区' ) ENGINE = OLAP DUPLICATE KEY(`id1`) COMMENT 'xxx' PARTITION BY LIST(`dt`, `hr`) ( PARTITION p2024082021 VALUES IN (("2024-08-20", "21")) ) DISTRIBUTED BY HASH(`dt`, `hr`) BUCKETS 2 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "min_load_replica_num" = "-1", "is_being_synced" = "false", "storage_medium" = "hdd", "storage_format" = "V2", "inverted_index_storage_format" = "V1", "light_schema_change" = "true", "disable_auto_compaction" = "false", "enable_single_replica_compaction" = "false", "group_commit_interval_ms" = "10000", "group_commit_data_bytes" = "134217728" ); ``` 1. 修改前表已有分区的bucket num为2  2. 修改List分区表bucket num(从2 -> 4)  3. 修改List分区后,添加的新分区bucket num为4  Co-authored-by: tongyang.han <tongyang.han@jiduauto.com>
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # fe-common This module is used to store some common classes of other modules. # spark-dpp This module is Spark DPP program, used for Spark Load function. Depends: fe-common # fe-core This module is the main process module of FE. Depends: fe-common, spark-dpp