Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ suite('test_balance_warm_up_with_compaction_use_peer_cache', 'docker') {
)
DUPLICATE KEY(`id`)
DISTRIBUTED BY HASH(`id`) BUCKETS 2
PROPERTIES ("replication_num" = "1");
PROPERTIES ("replication_num" = "1", "disable_auto_compaction" = "true");
"""
sql """
insert into $table values (344083, 1, 'comment', 'spez', '2008-10-26 13:49:29', 'Stay tuned...', 0, 343906, 0, [31, 454446], '', 0, '', [], 0), (33, 0, 'comment', 'spez', '2006-10-10 23:50:40', 'winnar winnar chicken dinnar!', 0, 31, 0, [34, 454450], '', 0, '', [], 0);
Expand Down
3 changes: 3 additions & 0 deletions regression-test/suites/cloud_p0/cache/ddl/nation.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ CREATE TABLE IF NOT EXISTS nation (
)
DUPLICATE KEY(N_NATIONKEY, N_NAME)
DISTRIBUTED BY HASH(N_NATIONKEY) BUCKETS 1
PROPERTIES (
"disable_auto_compaction" = "true"
)
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import org.codehaus.groovy.runtime.IOGroovyMethods

suite("test_multi_stale_rowset") {
def ttlProperties = """ PROPERTIES("file_cache_ttl_seconds"="1200") """
def ttlProperties = """ PROPERTIES("file_cache_ttl_seconds"="1200", "disable_auto_compaction"="true") """
List<String> ipList = new ArrayList<>();
List<String> hbPortList = new ArrayList<>()
List<String> httpPortList = new ArrayList<>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ suite("test_compaction_with_delete") {
`max_dwell_time` INT DEFAULT "0" COMMENT "用户最大停留时间",
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
DUPLICATE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 1 PROPERTIES ( "replication_num" = "1" );
BUCKETS 1 PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ suite("test_compaction_agg_keys") {
`hll_col` HLL HLL_UNION NOT NULL COMMENT "HLL列",
`bitmap_col` Bitmap BITMAP_UNION NOT NULL COMMENT "bitmap列" )
AGGREGATE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ suite("test_compaction_agg_keys_with_array_map") {
`array_col` ARRAY<STRING> REPLACE NULL COMMENT "array column",
`map_col` MAP<STRING, INT> REPLACE NULL COMMENT "map column")
AGGREGATE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down Expand Up @@ -129,4 +129,3 @@ suite("test_compaction_agg_keys_with_array_map") {
try_sql("DROP TABLE IF EXISTS ${tableName}")
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ suite("test_compaction_agg_keys_with_delete") {
`hll_col` HLL HLL_UNION NOT NULL COMMENT "HLL列",
`bitmap_col` Bitmap BITMAP_UNION NOT NULL COMMENT "bitmap列" )
AGGREGATE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ suite("test_compaction_dup_keys") {
`max_dwell_time` INT DEFAULT "0" COMMENT "用户最大停留时间",
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
DUPLICATE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ suite("test_compaction_dup_keys_with_delete") {
`max_dwell_time` INT DEFAULT "0" COMMENT "用户最大停留时间",
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
DUPLICATE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ suite("test_compaction_uniq_keys") {
`max_dwell_time` INT DEFAULT "0" COMMENT "用户最大停留时间",
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
UNIQUE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ suite("test_compaction_uniq_keys_ck") {
DISTRIBUTED BY HASH(`user_id`)
PROPERTIES (
"replication_num" = "1",
"enable_unique_key_merge_on_write" = "true"
"enable_unique_key_merge_on_write" = "true",
"disable_auto_compaction" = "true"
);
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ suite("test_compaction_uniq_keys_row_store", "p0") {
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
UNIQUE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1",
"disable_auto_compaction" = "true",
"enable_unique_key_merge_on_write" = "true",
"light_schema_change" = "true",
"enable_unique_key_skip_bitmap_column" = "false",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ suite("test_compaction_uniq_keys_row_store_ck", "p0") {
CLUSTER BY(`last_visit_date`, `last_update_date`, `city`, `cost`)
DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1",
"disable_auto_compaction" = "true",
"enable_unique_key_merge_on_write" = "true",
"light_schema_change" = "true",
"enable_unique_key_skip_bitmap_column" = "false",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ suite("test_compaction_uniq_keys_with_delete") {
`max_dwell_time` INT DEFAULT "0" COMMENT "用户最大停留时间",
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
UNIQUE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ suite("test_compaction_uniq_keys_with_delete_ck") {
PROPERTIES (
"replication_num" = "1",
"enable_unique_key_merge_on_write" = "true",
"enable_mow_light_delete" = "true"
"enable_mow_light_delete" = "true",
"disable_auto_compaction" = "true"
);
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ suite("test_compaction_mow_with_empty_rowset", "p0") {
DISTRIBUTED BY HASH(`k1`) BUCKETS 2
PROPERTIES (
"replication_allocation" = "tag.location.default: 1",
"enable_unique_key_merge_on_write" = "true"
"enable_unique_key_merge_on_write" = "true",
"disable_auto_compaction" = "true"
);
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ suite("test_vertical_compaction_agg_keys") {
`hll_col` HLL HLL_UNION NOT NULL COMMENT "HLL列",
`bitmap_col` Bitmap BITMAP_UNION NOT NULL COMMENT "bitmap列" )
AGGREGATE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`) BUCKETS 10
PROPERTIES ( "replication_num" = "1" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ suite("test_vertical_compaction_agg_state") {
AGGREGATE KEY(`user_id`)
COMMENT 'OLAP'
DISTRIBUTED BY HASH(`user_id`) BUCKETS 1
PROPERTIES ( "replication_num" = "1" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ suite("test_vertical_compaction_dup_keys") {
`max_dwell_time` INT DEFAULT "0" COMMENT "用户最大停留时间",
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
DUPLICATE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ suite("test_vertical_compaction_uniq_keys") {
`max_dwell_time` INT DEFAULT "0" COMMENT "用户最大停留时间",
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
UNIQUE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1", "enable_unique_key_merge_on_write"="true" );
PROPERTIES ( "replication_num" = "1", "enable_unique_key_merge_on_write"="true", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ suite("test_vertical_compaction_uniq_keys_ck") {
UNIQUE KEY(`user_id`, `date`, `datev2`, `datetimev2_1`, `datetimev2_2`, `city`, `age`, `sex`)
CLUSTER BY(`age`, `sex`, `user_id`)
DISTRIBUTED BY HASH(`user_id`)
PROPERTIES ( "replication_num" = "1", "enable_unique_key_merge_on_write"="true" );
PROPERTIES ( "replication_num" = "1", "enable_unique_key_merge_on_write"="true", "disable_auto_compaction" = "true" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ suite("test_point_query") {
INDEX col2 (`col2`) USING INVERTED )
ENGINE=OLAP UNIQUE KEY(`col1`, `col2`, `loc3`)
DISTRIBUTED BY HASH(`col1`, `col2`, `loc3`) BUCKETS 1
PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "bloom_filter_columns" = "col1", "store_row_column" = "true", "enable_mow_light_delete" = "false" );
PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "disable_auto_compaction" = "true", "bloom_filter_columns" = "col1", "store_row_column" = "true", "enable_mow_light_delete" = "false" );
"""
explain {
sql("select * from table_3821461 where col1 = -10 and col2 = 20 and loc3 = 'aabc'")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ suite("test_agg_keys_schema_change_datev2") {
)
AGGREGATE KEY(`datek1`,`datek2`)
DISTRIBUTED BY HASH(`datek1`) BUCKETS 1
PROPERTIES("replication_num" = "1", "light_schema_change" = "false");
PROPERTIES("replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false");
"""
// datev2
sql """ insert into ${tbName} values('2022-01-02', '2022-01-02 11:11:11', '2022-01-02', '2022-01-02 11:11:11');"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ suite("test_schema_change_varchar_to_datev2") {
)
AGGREGATE KEY(`k1`,`k2`,`k3`)
DISTRIBUTED BY HASH(`k1`,`k2`) BUCKETS 1
PROPERTIES("replication_num" = "1", "light_schema_change" = "false");
PROPERTIES("replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false");
"""
// insert
sql """ insert into ${tbName} values(1,"1","20200101",1,1), (2,"2","2020/01/02",2,2), (3,"3","2020-01-03",3,3), (4,"4","200104",4,4), (5,"5","20/01/05",5,5), (6,"6","20-01-06",6,6)"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ suite("test_agg_keys_schema_change_decimalv2", "nonConcurrent") {
)
AGGREGATE KEY(`decimalv2k1`,`decimalv2k2`, decimalv2k3)
DISTRIBUTED BY HASH(`decimalv2k1`) BUCKETS 1
PROPERTIES("replication_num" = "1", "light_schema_change" = "false");
PROPERTIES("replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false");
"""
sql """ insert into ${tbName} values
(111111111111111111.111111111,999999999999999999.994,999999999999999999.999,999999999999999999.999999994,999999999999999999.995);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ suite("test_agg_keys_schema_change_decimalv3") {
)
AGGREGATE KEY(`decimalv3k1`,`decimalv3k2`)
DISTRIBUTED BY HASH(`decimalv3k1`) BUCKETS 1
PROPERTIES("replication_num" = "1", "light_schema_change" = "false");
PROPERTIES("replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false");
"""
sql """ insert into ${tbName} values(0.111111111111111111111111111111111,11111111111111111111111111111.11,0.111111111111111111111111111111111,11111111111111111111111111111.11);"""
qt_sql """select * from ${tbName} ORDER BY `decimalv3k1`;"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ suite ("test_agg_keys_schema_change") {
`bitmap_col` Bitmap BITMAP_UNION NOT NULL COMMENT "bitmap列")
AGGREGATE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 8
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false" );
"""

sql """ INSERT INTO schema_change_agg_keys_regression_test VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ suite ("test_agg_mv_schema_change") {
`bitmap_col` Bitmap BITMAP_UNION NOT NULL COMMENT "bitmap列")
AGGREGATE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 8
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down Expand Up @@ -160,4 +160,3 @@ suite ("test_agg_mv_schema_change") {

}


Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ suite ("test_agg_rollup_schema_change") {
`bitmap_col` Bitmap BITMAP_UNION NOT NULL COMMENT "bitmap列")
AGGREGATE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 8
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false" );
"""

//add rollup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ suite ("test_agg_vals_schema_change") {
`bitmap_col` Bitmap BITMAP_UNION NOT NULL COMMENT "bitmap列")
AGGREGATE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 8
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ suite ("test_dup_mv_schema_change") {
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
DUPLICATE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 8
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ suite ("test_dup_rollup_schema_change") {
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
DUPLICATE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 8
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false" );
"""

//add rollup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ suite ("test_dup_vals_schema_change") {
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
DUPLICATE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 8
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ suite("test_schema_change_with_empty_rowset", "p0,nonConcurrent") {
DISTRIBUTED BY HASH(`k1`) BUCKETS 2
PROPERTIES (
"replication_allocation" = "tag.location.default: 1",
"enable_unique_key_merge_on_write" = "true"
"enable_unique_key_merge_on_write" = "true",
"disable_auto_compaction" = "true"
);
"""

Expand Down Expand Up @@ -88,4 +89,3 @@ suite("test_schema_change_with_empty_rowset", "p0,nonConcurrent") {
qt_sql """ select sum(k1), sum(k2) from ${tableName} """
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ suite ("test_uniq_mv_schema_change") {
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
UNIQUE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 8
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false", 'enable_unique_key_merge_on_write' = 'false');
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false", 'enable_unique_key_merge_on_write' = 'false');
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ suite ("test_uniq_rollup_schema_change") {
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
UNIQUE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 8
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false", 'enable_unique_key_merge_on_write' = 'false');
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false", 'enable_unique_key_merge_on_write' = 'false');
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ suite ("test_uniq_vals_schema_change") {
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
UNIQUE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
BUCKETS 8
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false" );
PROPERTIES ( "replication_num" = "1", "disable_auto_compaction" = "true", "light_schema_change" = "false" );
"""

sql """ INSERT INTO ${tableName} VALUES
Expand Down
Loading
Loading