修复版本号设置不准确的bug

作为PR:的补充,此处版本号应再+1,因为再PR:上错误地把版本号也回退了,会导致从旧备机归档方案升级到新备机归档方案但未提交时仍然能够创建归档槽
This commit is contained in:
Cross-罗 2021-11-22 08:25:04 +00:00 committed by Gitee
parent d251f7caeb
commit 5bc68d9c1c
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ bool open_join_children = true;
bool will_shutdown = false;
/* hard-wired binary version number */
const uint32 GRAND_VERSION_NUM = 92299;
const uint32 GRAND_VERSION_NUM = 92300;
const uint32 MATVIEW_VERSION_NUM = 92213;
const uint32 PARTIALPUSH_VERSION_NUM = 92087;
@ -77,7 +77,7 @@ const uint32 RANGE_LIST_DISTRIBUTION_VERSION_NUM = 92272;
const uint32 BACKUP_SLOT_VERSION_NUM = 92282;
const uint32 ML_OPT_MODEL_VERSION_NUM = 92284;
const uint32 FIX_SQL_ADD_RELATION_REF_COUNT = 92291;
const uint32 STANDBY_ARCHIVING_VERSION_NUM = 92299;
const uint32 STANDBY_ARCHIVING_VERSION_NUM = 92300;
/* This variable indicates wheather the instance is in progress of upgrade as a whole */
uint32 volatile WorkingGrandVersionNum = GRAND_VERSION_NUM;