Postgres UNIQUE 约束是否意味着索引?

Does a Postgres UNIQUE constraint imply an index?

当向 Postgres 添加唯一约束时 table 是否意味着索引也已添加到 table?

意思是,如果我在 text 列上添加 UNIQUE 约束,该文本列现在是否有索引,还是必须单独添加索引?

是。
UNIQUE 在 Postgres 中使用唯一的 B 树索引实现约束。

参见:

  • How does PostgreSQL enforce the UNIQUE constraint / what type of index does it use?