diff --git a/regression-test/pipeline/cloud_p0/conf/be_custom.conf b/regression-test/pipeline/cloud_p0/conf/be_custom.conf index 2259c031ce965c..1f4104304fcaf8 100644 --- a/regression-test/pipeline/cloud_p0/conf/be_custom.conf +++ b/regression-test/pipeline/cloud_p0/conf/be_custom.conf @@ -28,4 +28,7 @@ cloud_unique_id = cloud_unique_id_compute_node0 meta_service_use_load_balancer = false enable_file_cache = true file_cache_path = [{"path":"/data/doris_cloud/file_cache","total_size":104857600,"query_limit":104857600}] -tmp_file_dirs = [{"path":"/data/doris_cloud/tmp","max_cache_bytes":104857600,"max_upload_bytes":104857600}] \ No newline at end of file +tmp_file_dirs = [{"path":"/data/doris_cloud/tmp","max_cache_bytes":104857600,"max_upload_bytes":104857600}] +# For debug +sys_log_verbose_modules=vrow_distribution,tablet_info +sys_log_verbose_level=7 \ No newline at end of file diff --git a/regression-test/pipeline/cloud_p0/conf/fe_custom.conf b/regression-test/pipeline/cloud_p0/conf/fe_custom.conf index 8e6ae1235c2a7e..18ed1d27132a0b 100644 --- a/regression-test/pipeline/cloud_p0/conf/fe_custom.conf +++ b/regression-test/pipeline/cloud_p0/conf/fe_custom.conf @@ -36,3 +36,5 @@ cloud_unique_id=cloud_unique_id_sql_server00 # for case test_build_mtmv.groovy enable_job_schedule_second_for_test=true enable_light_index_change=false +# For debug +sys_log_verbose_modules = org.apache.doris.service.FrontendServiceImpl \ No newline at end of file diff --git a/regression-test/pipeline/cloud_p1/conf/be_custom.conf b/regression-test/pipeline/cloud_p1/conf/be_custom.conf index 2259c031ce965c..1f4104304fcaf8 100644 --- a/regression-test/pipeline/cloud_p1/conf/be_custom.conf +++ b/regression-test/pipeline/cloud_p1/conf/be_custom.conf @@ -28,4 +28,7 @@ cloud_unique_id = cloud_unique_id_compute_node0 meta_service_use_load_balancer = false enable_file_cache = true file_cache_path = [{"path":"/data/doris_cloud/file_cache","total_size":104857600,"query_limit":104857600}] -tmp_file_dirs = [{"path":"/data/doris_cloud/tmp","max_cache_bytes":104857600,"max_upload_bytes":104857600}] \ No newline at end of file +tmp_file_dirs = [{"path":"/data/doris_cloud/tmp","max_cache_bytes":104857600,"max_upload_bytes":104857600}] +# For debug +sys_log_verbose_modules=vrow_distribution,tablet_info +sys_log_verbose_level=7 \ No newline at end of file diff --git a/regression-test/pipeline/cloud_p1/conf/fe_custom.conf b/regression-test/pipeline/cloud_p1/conf/fe_custom.conf index 2f9a06ddd7f76b..199a2bfa870914 100644 --- a/regression-test/pipeline/cloud_p1/conf/fe_custom.conf +++ b/regression-test/pipeline/cloud_p1/conf/fe_custom.conf @@ -34,3 +34,5 @@ cloud_http_port=18030 meta_service_endpoint=127.0.0.1:5000 cloud_unique_id=cloud_unique_id_sql_server00 enable_light_index_change=false +# For debug +sys_log_verbose_modules = org.apache.doris.service.FrontendServiceImpl \ No newline at end of file diff --git a/regression-test/suites/partition_p0/auto_partition/test_auto_range_partition.groovy b/regression-test/suites/partition_p0/auto_partition/test_auto_range_partition.groovy index 508f086f865729..bf9b24c2634ccf 100644 --- a/regression-test/suites/partition_p0/auto_partition/test_auto_range_partition.groovy +++ b/regression-test/suites/partition_p0/auto_partition/test_auto_range_partition.groovy @@ -166,5 +166,9 @@ suite("test_auto_range_partition") { sql " insert into isit_src values (20201212); " sql " insert into isit select * from isit_src " sql " sync " + result2 = sql "show partitions from isit" + logger.info("${result2}") + def tmp_result = sql "select count() from isit" + assertEquals(tmp_result[0][0], 1) qt_sql " select * from isit order by k " }