Think of a materialized view as its own table, which is populated when the view is created or refreshed. When the materialized view is being populated, it will use whatever indexes are on the source tables which are relevant. However, when you query the materialized view, you're not interacting with any of those source tables, and so none of those indexes can come into play.
If you want to do fulltext queries or the like on a materialized view, you'll want to create a relevant index on the materialized view itself.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…