[CP] [CP] fix bug about timezone formalize when startup obs

This commit is contained in:
obdev
2023-06-25 09:48:31 +00:00
committed by ob-robot
parent 44b6f772e1
commit a948fce238
2 changed files with 2 additions and 2 deletions

View File

@ -296,7 +296,7 @@ static struct VarsInit{
ObSysVars[16].base_class_ = "ObTimeZoneSysVar" ;
ObSysVars[16].name_ = "time_zone" ;
ObSysVars[16].data_type_ = ObVarcharType ;
ObSysVars[16].value_ = "+8:00" ;
ObSysVars[16].value_ = "+08:00" ;
ObSysVars[16].flags_ = ObSysVarFlag::GLOBAL_SCOPE | ObSysVarFlag::SESSION_SCOPE | ObSysVarFlag::NEED_SERIALIZE ;
ObSysVars[16].on_check_and_convert_func_ = "ObSysVarOnCheckFuncs::check_and_convert_time_zone" ;
ObSysVars[16].id_ = SYS_VAR_TIME_ZONE ;

View File

@ -257,7 +257,7 @@
"time_zone": {
"id": 16,
"name": "time_zone",
"value": "+8:00",
"value": "+08:00",
"data_type": "varchar",
"info": " ",
"flags": "GLOBAL | SESSION | NEED_SERIALIZE",