postgres 索引是否自动更新?

Is a postgres index updated automatically?

在我的 pgAdmin 3 中,我在索引的上下文菜单中有一个选项显示 update。这是否意味着索引不会在每次插入时自动更新?如果是这种情况,我该如何配置它以进行自我更新?

索引自动更新as documented in the manual

Once an index is created, no further intervention is required: the system will update the index when the table is modified

因为我不使用 pgAdmin,所以我不知道 "Update" 项目应该做什么。