information_schema.columns信息未更新

【StarRocks版本】例如:3.0.3 单机
建表语句

create table if not exists test.`my_Money` (
	`id` bigint(20)  NOT NULL ,
	`Name` varchar(150) NULL ,
	`AGE` bigint(20)  NULL ,
	`my_money` decimal(19, 4)  NULL ,
	`s_money` decimal(10, 4)  NULL ,
	`my_b` boolean  NULL ,
	`my_image` string  NULL 
)ENGINE=OLAP 
PRIMARY KEY(`id`)
COMMENT "OLAP"
DISTRIBUTED BY HASH(`id`)  
PROPERTIES (
"replication_num" = "1",
"in_memory" = "false",
"storage_format" = "DEFAULT",
"enable_persistent_index" = "false",
"compression" = "LZ4"
);

select * FROM information_schema.columns WHERE TABLE_SCHEMA = ‘test’ AND UCASE(TABLE_NAME) = UCASE(‘my_Money’)
查出来IS_NULLABLE列全是NO
desc my_Money和SHOW FULL COLUMNS FROM my_Money 是正常的

|my_Money|test|id|1|||NO|bigint|
|my_Money|test|Name|2|||NO|varchar|
|my_Money|test|AGE|3|||NO|bigint|
|my_Money|test|my_money|4|||NO|decimal|
|my_Money|test|s_money|5|||NO|decimal|
|my_Money|test|my_b|6|||NO|tinyint|
|my_Money|test|my_image|7|||NO|varchar|

整个test库都是NO

select * FROM information_schema.columns WHERE TABLE_SCHEMA = ‘test’ and TABLE_NAME=‘my_Money’ ; 发一下这个的执行结果

新建的数据库也一样。。。是3.0.3的问题吗

升级到3.1.4没问题了