使用cube报错

在oceanbse数据库中是不能使用cube的嘛
create table test (c1 varchar(20),c2 varchar(20));
insert into test values(‘1’,‘2’);
insert into test values(‘11’,‘22’);
insert into test values(‘111’,‘222’);

select c1,c2,sum(c1) from test group by c1,c2,cube(c1);
报错

当前不支持,会在4.2的oracle租户中支持

有什么可以替代的嘛4.1.1版本的

目前没有