For example, box and json type cannot be used. ```sql test4=# create table boxes (b box); CREATE TABLE test4=# create incremental materialized view v as select * from boxes ; ERROR: could not identify an equality operator for type box test4=# create table j (d json); CREATE TABLE test4=# create incremental materialized view v as select * from j ; ERROR: could not identify an equality operator for type json ``` jsonb can be used. ```sql test4=# create table j2 (d jsonb); CREATE TABLE test4=# create incremental materialized view v as select * from j2 ; SELECT 0 ```