diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp index b08b0cab45fb09..58cfcd88502d36 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -1276,7 +1276,7 @@ DEFINE_mBool(enable_agg_and_remove_pre_rowsets_delete_bitmap, "true"); DEFINE_mBool(enable_check_agg_and_remove_pre_rowsets_delete_bitmap, "false"); // The secure path with user files, used in the `local` table function. -DEFINE_mString(user_files_secure_path, "${DORIS_HOME}"); +DEFINE_String(user_files_secure_path, "${DORIS_HOME}"); DEFINE_Int32(fe_expire_duration_seconds, "60"); diff --git a/be/src/common/config.h b/be/src/common/config.h index 294b4cd5973630..6264bc9e684e41 100644 --- a/be/src/common/config.h +++ b/be/src/common/config.h @@ -1333,7 +1333,7 @@ DECLARE_mBool(enable_agg_and_remove_pre_rowsets_delete_bitmap); DECLARE_mBool(enable_check_agg_and_remove_pre_rowsets_delete_bitmap); // The secure path with user files, used in the `local` table function. -DECLARE_mString(user_files_secure_path); +DECLARE_String(user_files_secure_path); // If fe's frontend info has not been updated for more than fe_expire_duration_seconds, it will be regarded // as an abnormal fe, this will cause be to cancel this fe's related query.