What is the definition of secondary index in postgresql?
问题 From https://www.postgresql.org/docs/9.6/static/indexes-index-only-scans.html: All indexes in PostgreSQL are secondary indexes, meaning that each index is stored separately from the table's main data area (which is called the table's heap in PostgreSQL terminology). In postgresql, is a secondary index defined as an index which is stored separately from the table's main data area? If not, what is its definition, and why does the quote mention the one which is not a definition? Similarly, what