diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp index 34b68cfe0215a4..bad123f96ed212 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -1261,7 +1261,7 @@ DEFINE_mBool(enable_mow_get_agg_by_cache, "true"); DEFINE_mBool(enable_mow_get_agg_correctness_check_core, "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 cc324c11b6bdc3..c65e697e69ebbf 100644 --- a/be/src/common/config.h +++ b/be/src/common/config.h @@ -1320,7 +1320,7 @@ DECLARE_mBool(enable_mow_get_agg_by_cache); DECLARE_mBool(enable_mow_get_agg_correctness_check_core); // 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.