ob4.0不能修改__min_full_resource_pool_memory这个参数吗

【 使用环境 】生产环境 or 测试环境
【 OB or 其他组件 】
【 使用版本 】
【问题描述】

obclient [oceanbase]> alter system set ‘__min_full_resource_pool_memory’=‘1G’;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use near ‘’__min_full_resource_pool_memory’=‘1G’’ at line 1
obclient [oceanbase]>
obclient [oceanbase]> show tenant;
±--------------------+
| Current_tenant_name |
±--------------------+
| sys |
±--------------------+

alter system set __min_full_resource_pool_memory=‘1G’;

配置项名字不要加单引号

哦忘记了,这个配置项当时设计的比较奇怪,类型是int而不是cap,考虑兼容性一直没改,改成这个
alter system set __min_full_resource_pool_memory=1073741824

不到