diff --git a/be/src/io/fs/hdfs_file_system.h b/be/src/io/fs/hdfs_file_system.h index c4e23f2010f900..db854cafa9edd0 100644 --- a/be/src/io/fs/hdfs_file_system.h +++ b/be/src/io/fs/hdfs_file_system.h @@ -51,7 +51,7 @@ class HdfsFileSystemHandle { _invalid(false) {} ~HdfsFileSystemHandle() { - DCHECK(_ref_cnt == 0); + DCHECK(_ref_cnt == 0) << _ref_cnt; if (hdfs_fs != nullptr) { // DO NOT call hdfsDisconnect(), or we will meet "Filesystem closed" // even if we create a new one diff --git a/regression-test/pipeline/p0/conf/regression-conf.groovy b/regression-test/pipeline/p0/conf/regression-conf.groovy index b99e21c4e7ccbd..423126330d2200 100644 --- a/regression-test/pipeline/p0/conf/regression-conf.groovy +++ b/regression-test/pipeline/p0/conf/regression-conf.groovy @@ -56,7 +56,7 @@ excludeGroups = "" // this suites will not be executed // load_stream_fault_injection may cause bad disk -excludeSuites = "test_index_failure_injection,test_dump_image,test_profile,test_spark_load,test_refresh_mtmv,test_bitmap_filter,test_information_schema_external" +excludeSuites = "test_index_failure_injection,test_dump_image,test_profile,test_spark_load,test_refresh_mtmv,test_bitmap_filter,test_information_schema_external,test_base_insert_job" // this directories will not be executed excludeDirectories = "workload_manager_p1,nereids_rules_p0/subquery"