Sql报错:VectorizedInPredicate type not same backend [id=10204] [host=172.xx.xxx.xxx],如何解决?

Starrocks版本3.2.3
有一张明细表t_log,有日期、活动id和其他一些纬度字段,其中对日期和活动做了列式分区设定,如下:
create table t_log(
uuid string,
type string,
ip string,
pdate date not null,
campaign_id string not null
)
DUPLICATE KEY(uuid,type)
PARTITION BY (pdate,campaign_id)
DISTRIBUTED BY HASH(uuid);

在执行查询【select * from t_log where campaign_id in (“23452”,“23454”)】时,报如下错误:
VectorizedInPredicate type not same backend [id=10204] [host=172.xx.xxx.xxx]]

但是该语句可以正常执行explain解析计划操作。

请问该问题产生的原因和解决方案是什么?

发一下 explain costs + sql 的结果,再补充一下 show backends\G 和show frontends \G的输出