This is an automated email from the ASF dual-hosted git repository.

starocean999 pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new 01f0003792d [fix](test)set replication_allocation = 1 (#45078)
01f0003792d is described below

commit 01f0003792d08cb2d38324f1c87dd9acf5551eda
Author: starocean999 <li...@selectdb.com>
AuthorDate: Fri Dec 6 14:49:51 2024 +0800

    [fix](test)set replication_allocation = 1 (#45078)
    
    pick from master https://github.com/apache/doris/pull/44199
---
 .../nereids_rules_p0/tablet_prune/test_tablet_prune.groovy       | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git 
a/regression-test/suites/nereids_rules_p0/tablet_prune/test_tablet_prune.groovy 
b/regression-test/suites/nereids_rules_p0/tablet_prune/test_tablet_prune.groovy
index 98daa649dfb..36636b1f535 100644
--- 
a/regression-test/suites/nereids_rules_p0/tablet_prune/test_tablet_prune.groovy
+++ 
b/regression-test/suites/nereids_rules_p0/tablet_prune/test_tablet_prune.groovy
@@ -21,7 +21,14 @@ suite("test_tablet_prune") {
 
     sql "drop table if exists t_customers_wide_index"
     sql """
-    CREATE TABLE `t_customers_wide_index` (   `CUSTOMER_ID` int NULL,   
`ADDRESS` varchar(1500) NULL) ENGINE=OLAP UNIQUE KEY(`CUSTOMER_ID`) DISTRIBUTED 
BY HASH(`CUSTOMER_ID`) BUCKETS 32 PROPERTIES ( "replication_allocation" = 
"tag.location.default: 1", "file_cache_ttl_seconds" = "0", "is_being_synced" = 
"false", "storage_medium" = "hdd", "storage_format" = "V2", 
"inverted_index_storage_format" = "V2", "enable_unique_key_merge_on_write" = 
"true", "light_schema_change" = "true", "store_row [...]
+    CREATE TABLE `t_customers_wide_index` 
+    (`CUSTOMER_ID` int NULL,`ADDRESS` varchar(1500) NULL) 
+    ENGINE=OLAP 
+    UNIQUE KEY(`CUSTOMER_ID`) 
+    DISTRIBUTED BY HASH(`CUSTOMER_ID`) 
+    BUCKETS 32 
+    PROPERTIES ( "replication_allocation" = "tag.location.default: 1");"""
+    
     sql """
     insert into t_customers_wide_index values (1, "111");
     """


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to