聚合模型下创建物化视图失败

现有 a, b, c, d 四列,(a, b, c)为聚合键,d 为 bitmap 列。

在此基础上想要建立物化视图,如下

CREATE MATERIALIZED VIEW material_test_view AS
select a, b, c, bitmap_max(d)
from material_test
group by a, b, c;

ERROR: select list expression not produced by aggregation output (missing from GROUP BY clause?): bitmap_max(d)

可能是不支持 bitmap_max 函数

是的,物化视图暂时不支持bitmap_max函数。