Can I add a hint clause to a materialized view in postgreSQL?
Can I add a hint clause to a materialized view in PostgreSQL as follows? or is there another way? ex1. CREATE MATERIALIZED VIEW MV1 /*+ IndexScan(tableA) */ SELECT... ex2. /*+ IndexScan(tableA) */ REFRESH MATERIALIZED VIEW MV1 I tried both, but…